Skip to content

Commit c1d41f3

Browse files
authored
Merge pull request #33 from sdpython/tree
Implements conversion to onnx for NeuralTreeNetClassifier
2 parents cab3825 + 5c9e2e9 commit c1d41f3

19 files changed

Lines changed: 3334 additions & 335 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111

1212
- restore_cache:
1313
keys:
14-
- v3-dependencies-{{ checksum "requirements.txt" }}
15-
- v3-dependencies-
14+
- v4-dependencies-{{ checksum "requirements.txt" }}
15+
- v4-dependencies-
1616

1717
- run:
1818
name: Install dependencies for graphviz
@@ -51,7 +51,7 @@ jobs:
5151
- save_cache:
5252
paths:
5353
- ./venv
54-
key: v3-dependencies-{{ checksum "requirements.txt" }}
54+
key: v4-dependencies-{{ checksum "requirements.txt" }}
5555

5656
- run:
5757
name: check list of dependencies

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ x64/
5252
build/
5353
[Bb]in/
5454
[Oo]bj/
55+
.eggs/
5556

5657
# MSTest test Results
5758
[Tt]est[Rr]esult*/
@@ -268,13 +269,12 @@ _doc/notebooks/Untitled.ipynb
268269
_doc/notebooks/ml/*.clean_cache
269270
_doc/notebooks/ml/img-*.png
270271
_doc/notebooks/ml/*.pickle
271-
272272
_doc/sphinxdoc/source/nbcov.png
273273
_doc/notebooks/dsgarden/arbre.png
274274
_doc/notebooks/dsgarden/arbre.dot
275-
_doc/notebooks/nlp/output_30_0.jpeg
276-
_doc/notebooks/nlp/output_38_0.jpeg
277-
_doc/notebooks/nlp/output_41_0.jpeg
275+
_doc/notebooks/nlp/output_*.jpeg
278276
_doc/sphinxdoc/source/c_ml/math/*.png
279-
_doc/sphinxdoc/source/c_ml/piecewise_.html
280-
_unittests/ut_graph/test_graph_distance.py.prof
277+
_doc/sphinxdoc/source/c_ml/*.html
278+
_unittests/ut_graph/*.prof
279+
_doc/notebooks/ml/onnxruntime*.json
280+
_doc/notebooks/ml/tree_*.onnx

_doc/notebooks/ml/neural_tree.ipynb

Lines changed: 184 additions & 240 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)