From d4b0c8675b591f1618ce289570fec7049fe3ce0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?xavier=20dupr=C3=A9?= Date: Thu, 24 Feb 2022 23:16:53 +0100 Subject: [PATCH] documentation --- HISTORY.rst | 24 +++++++++++++++---- .../source/_exts/generate_automated_pages.py | 2 +- bin/run_bench_documentation.sh | 2 +- mlprodict/__init__.py | 2 +- 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 898f589e0..00412cdfc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,9 +5,27 @@ History ======= -current - 2022-02-11 - 0.00Mb +current - 2022-02-24 - 0.00Mb ============================= +* #366: Adds python runtime for CategoryMapper (2022-02-24) +* #365: Adds command line benchmark_doc (2022-02-24) +* #364: Runs onnx backend test with python runtime (2022-02-23) +* #362: Adds command line plot_onnx (2022-02-23) +* #363: Refactoring, moving files testing.experimental_c (2022-02-23) +* #361: Introduces __max_supported_opset__ and refactors the library (2022-02-23) +* #360: Xop API, adds class OnnxSubOnnx to insert ONNX graph (2022-02-22) +* #359: Supports domains in Xop API (2022-02-21) +* #358: Extends supported operator by OnnxShapeInference (2022-02-21) +* #357: Modifies OnnxShapeInference to deal with untyped outputs (2022-02-19) +* #356: Supports multiple affectations (xop) (2022-02-18) +* #353: Experimentations with a new API to create ONNX graphs (2022-02-18) +* #355: Fixes for onnx==1.11 (2022-02-18) +* #352: Supports for shape inference on unary operators (2022-02-14) + +0.8.1697 - 2022-02-11 - 1.97Mb +============================== + * #351: Adds name in ShapeResult, fixes zoo links (2022-02-11) * #350: First version of runtime OnnxShapeInference (2022-02-09) * #348: Moves OnnxMicroRuntime to onnxrt (2022-02-05) @@ -323,10 +341,6 @@ current - 2022-02-11 - 0.00Mb * #104: Enable / disable parallelisation in topk (2020-02-23) * #103: Implements plot benchmark ratio depending on two parameters (2020-02-22) * #102: Fix conversion for xgboost 1.0 (2020-02-21) - -0.3.975 - 2020-02-19 - 0.28Mb -============================= - * #100: add notebook on TreeEnsemble (2020-02-19) * #99: Fixes #93, use same code for TreeEnsembleClassifier and TreeEnsembleRegression (2020-02-19) * #93: Use pointer for TreeClassifier (2020-02-19) diff --git a/_doc/sphinxdoc/source/_exts/generate_automated_pages.py b/_doc/sphinxdoc/source/_exts/generate_automated_pages.py index 7834438c2..3d081db65 100644 --- a/_doc/sphinxdoc/source/_exts/generate_automated_pages.py +++ b/_doc/sphinxdoc/source/_exts/generate_automated_pages.py @@ -78,7 +78,7 @@ def write_page_onnxrt_benches(app, runtime, skip=None, white_list=None): logger.info("[mlprodict] shape '{}'.".format(piv.shape)) print("[mlprodict-sphinx] shape '{}'".format(piv.shape)) - + def make_link(row): link = ":ref:`{name} `" name = row['name'] diff --git a/bin/run_bench_documentation.sh b/bin/run_bench_documentation.sh index 3858e0bb3..4191bff76 100644 --- a/bin/run_bench_documentation.sh +++ b/bin/run_bench_documentation.sh @@ -4,4 +4,4 @@ python -m mlprodict benchmark_doc --verbose=1 --out_raw=bench_python_compiled.xs echo --ONNXRUNTIME-- mkdir bench_onnxruntime1 -python -m mlprodict benchmark_doc --verbose=1 --out_raw=bench_onnxruntime1.xslx --out_summary=bench_sum_onnxruntime1.xlsx --dump_dir=./bench_onnxruntime1 --runtime=onnxruntime1 +python -m mlprodict benchmark_doc --verbose=1 --out_raw=bench_onnxruntime1.xslx --out_summary=bench_sum_onnxruntime1.xlsx --dump_dir=./bench_onnxruntime1 --runtime=onnxruntime1 \ No newline at end of file diff --git a/mlprodict/__init__.py b/mlprodict/__init__.py index c3ae1f053..b692c47e7 100644 --- a/mlprodict/__init__.py +++ b/mlprodict/__init__.py @@ -5,7 +5,7 @@ converting investigate issues with ONNX models. """ -__version__ = "0.8.1697" +__version__ = "0.8.1727" __author__ = "Xavier Dupré" __max_supported_opset__ = 15 # Converters are tested up to this version. __max_supported_opsets__ = {