Chronos: Add how-to guides for exporting ONNX/OpenVINO files to disk (#6234)

* create how-to guides for export model files to onnx/openvino

* add how to export onnx files

* add to doc

* hide the training process

* fix

* add how to export openvino files

* fix onnx

* fix nblink

* fix onnx

* change import

* fix onnx

* update some descriptions

* update yml file
This commit is contained in:
Hu, Zhaojie 2022-10-25 16:24:35 +08:00 committed by GitHub
parent 6245a4525b
commit 662628f4db
4 changed files with 11 additions and 1 deletions

View file

@ -178,6 +178,8 @@ subtrees:
- file: doc/Chronos/Howto/how_to_speedup_inference_of_forecaster_through_OpenVINO
- file: doc/Chronos/Howto/how_to_evaluate_a_forecaster
- file: doc/Chronos/Howto/how_to_generate_confidence_interval_for_prediction
- file: doc/Chronos/Howto/how_to_export_onnx_files
- file: doc/Chronos/Howto/how_to_export_openvino_files
- file: doc/Chronos/QuickStart/index
title: "Tutorials"
subtrees:

View file

@ -0,0 +1,3 @@
{
"path": "../../../../../../python/chronos/colab-notebook/howto/how_to_export_onnx_files.ipynb"
}

View file

@ -0,0 +1,3 @@
{
"path": "../../../../../../python/chronos/colab-notebook/howto/how_to_export_openvino_files.ipynb"
}

View file

@ -16,4 +16,6 @@ Forecasting
* `Speed up inference of forecaster through ONNXRuntime <how_to_speedup_inference_of_forecaster_through_ONNXRuntime.html>`__
* `Speed up inference of forecaster through OpenVINO <how_to_speedup_inference_of_forecaster_through_OpenVINO.html>`__
* `Evaluate a forecaster <how_to_evaluate_a_forecaster.html>`__
* `Generate confidence interval for prediction <how_to_generate_confidence_interval_for_prediction.html>`__
* `Generate confidence interval for prediction <how_to_generate_confidence_interval_for_prediction.html>`__
* `Export the ONNX model files to disk <how_to_export_onnx_files.html>`__
* `Export the OpenVINO model files to disk <how_to_export_openvino_files.html>`__