Chronos : How to preprocess my data guide (#6446)

* add introduction

* finish basic version

* update nblink

* update based on comments

* update css
This commit is contained in:
Ruonan Wang 2022-11-11 16:30:15 +08:00 committed by GitHub
parent a9c3c18108
commit dbce8f13e0
4 changed files with 10 additions and 0 deletions

View file

@ -96,4 +96,9 @@ footer.bd-footer{
/* for tables in documentation guides, vertically center rows */ /* for tables in documentation guides, vertically center rows */
.bigdl-documentation-guide-tables td{ .bigdl-documentation-guide-tables td{
vertical-align: middle; vertical-align: middle;
}
/* for tables in notebooks generated by pandas dataframe */
.rendered_html table {
table-layout: auto !important;
} }

View file

@ -190,6 +190,7 @@ subtrees:
- file: doc/Chronos/Howto/how_to_export_onnx_files - file: doc/Chronos/Howto/how_to_export_onnx_files
- file: doc/Chronos/Howto/how_to_export_openvino_files - file: doc/Chronos/Howto/how_to_export_openvino_files
- file: doc/Chronos/Howto/how_to_export_torchscript_files - file: doc/Chronos/Howto/how_to_export_torchscript_files
- file: doc/Chronos/Howto/how_to_preprocess_my_data
- file: doc/Chronos/QuickStart/index - file: doc/Chronos/QuickStart/index
title: "Tutorials" title: "Tutorials"
subtrees: subtrees:

View file

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

View file

@ -22,3 +22,4 @@ Forecasting
* `Export the ONNX model files to disk <how_to_export_onnx_files.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>`__ * `Export the OpenVINO model files to disk <how_to_export_openvino_files.html>`__
* `Export the TorchScript model files to disk <how_to_export_torchscript_files.html>`__ * `Export the TorchScript model files to disk <how_to_export_torchscript_files.html>`__
* `Preprocess my data <how_to_preprocess_my_data.html>`__