Chronos: Update chronos-nightly Dockerfile and notebook (#6899)
* update docker file and notebook * fix comment * fix comment
This commit is contained in:
parent
ae7160790d
commit
044785173e
1 changed files with 7 additions and 3 deletions
|
|
@ -30,12 +30,15 @@ hardware: run chronos on a single machine or a cluster.
|
||||||
value: single (default)
|
value: single (default)
|
||||||
cluster
|
cluster
|
||||||
|
|
||||||
extra_dep: whether to install some extra dependencies like onnx and jupyter.
|
inference: whether to install dependencies for inference optimization (e.g. onnx, openvino, ...).
|
||||||
|
value: y (for yes)
|
||||||
|
n (default, for no)
|
||||||
|
|
||||||
|
extra_dep: whether to install some extra dependencies.
|
||||||
value: y (for yes)
|
value: y (for yes)
|
||||||
n (default, for no)
|
n (default, for no)
|
||||||
if specified to y, the following dependencies will be installed:
|
if specified to y, the following dependencies will be installed:
|
||||||
neural_compressor, onnxruntime, onnx, tsfresh,
|
tsfresh, pyarrow, prometheus_pandas, xgboost, jupyter, matplotlib
|
||||||
prometheus_pandas, xgboost, jupyter
|
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want to build image with the default options, you can simply use the following command:
|
If you want to build image with the default options, you can simply use the following command:
|
||||||
|
|
@ -49,6 +52,7 @@ sudo docker build \
|
||||||
--build-arg model=pytorch \
|
--build-arg model=pytorch \
|
||||||
--build-arg auto_tuning=y \
|
--build-arg auto_tuning=y \
|
||||||
--build-arg hardware=single \
|
--build-arg hardware=single \
|
||||||
|
--build-arg inference=n \
|
||||||
--build-arg extra_dep=n \
|
--build-arg extra_dep=n \
|
||||||
-t chronos-nightly:b1 . # You may choose any NAME:TAG you want.
|
-t chronos-nightly:b1 . # You may choose any NAME:TAG you want.
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue