Skip to content
This repository was archived by the owner on May 25, 2024. It is now read-only.

Commit ec526d9

Browse files
committed
fix typo
1 parent a9a59c4 commit ec526d9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

micromlgen/xgboost.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def port_xgboost(clf, **kwargs):
3333
tmp.seek(0)
3434
decoded = json.load(tmp)
3535
trees = [format_tree(tree) for tree in decoded['learner']['gradient_booster']['model']['trees']]
36-
print(trees)
3736
return jinja('xgboost/xgboost.jinja', {
3837
'n_classes': int(decoded['learner']['learner_model_param']['num_class']),
3938
'trees': trees,

publish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
#git push origin master -f
3+
git push origin master -f
44
rm -rf dist/*
55
python setup.py sdist
66
twine upload dist/*

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
setup(
88
name = 'micromlgen',
99
packages = ['micromlgen'],
10-
version = '1.1.11',
10+
version = '1.1.12',
1111
license='MIT',
1212
description = 'Generate C code for microcontrollers from Python\'s sklearn classifiers',
1313
author = 'Simone Salerno',
1414
author_email = 'eloquentarduino@gmail.com',
1515
url = 'https://github.com/eloquentarduino/micromlgen',
16-
download_url = 'https://github.com/eloquentarduino/micromlgen/archive/v_1111.tar.gz',
16+
download_url = 'https://github.com/eloquentarduino/micromlgen/archive/v_1112.tar.gz',
1717
keywords = [
1818
'ML',
1919
'microcontrollers',

0 commit comments

Comments
 (0)