This repository was archived by the owner on May 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ def port_xgboost(clf, **kwargs):
33
33
tmp .seek (0 )
34
34
decoded = json .load (tmp )
35
35
trees = [format_tree (tree ) for tree in decoded ['learner' ]['gradient_booster' ]['model' ]['trees' ]]
36
- print (trees )
37
36
return jinja ('xgboost/xgboost.jinja' , {
38
37
'n_classes' : int (decoded ['learner' ]['learner_model_param' ]['num_class' ]),
39
38
'trees' : trees ,
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- # git push origin master -f
3
+ git push origin master -f
4
4
rm -rf dist/*
5
5
python setup.py sdist
6
6
twine upload dist/*
Original file line number Diff line number Diff line change 7
7
setup (
8
8
name = 'micromlgen' ,
9
9
packages = ['micromlgen' ],
10
- version = '1.1.11 ' ,
10
+ version = '1.1.12 ' ,
11
11
license = 'MIT' ,
12
12
description = 'Generate C code for microcontrollers from Python\' s sklearn classifiers' ,
13
13
author = 'Simone Salerno' ,
14
14
author_email = 'eloquentarduino@gmail.com' ,
15
15
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' ,
17
17
keywords = [
18
18
'ML' ,
19
19
'microcontrollers' ,
You can’t perform that action at this time.
0 commit comments