Chronos: update tensorflow support in installation doc (#8341)

This commit is contained in:
binbin Deng 2023-06-20 10:18:09 +08:00 committed by GitHub
parent 30ac9a70f5
commit 99d396c9af
2 changed files with 14 additions and 2 deletions

View file

@ -16,7 +16,7 @@
table-layout: fixed; /* make cells have even width */
}
.installation-panel-table tr, td{
.installation-panel-table tr, .installation-panel-table td{
padding: 0.5rem;
background-color: var(--pst-color-on-surface);
}

View file

@ -136,4 +136,16 @@ Chronos can be simply installed using pip on native Windows, you could use the s
2. `intel_extension_for_pytorch (ipex)` is unavailable for Windows now, so the related feature is not supported.
For some known issues when installing and using Chronos on native Windows, you could refer to [windows_guide](https://bigdl.readthedocs.io/en/latest/doc/Chronos/Howto/windows_guide.html).
For some known issues when installing and using Chronos on native Windows, you could refer to [windows_guide](https://bigdl.readthedocs.io/en/latest/doc/Chronos/Howto/windows_guide.html).
##### Install Chronos along with specific Tensorflow
Currently, the default Tensorflow version of Chronos is 2.7. But Chronos is also validated on Tensorflow 2.8-2.12. If you want to use specific Tensorflow, please follow the table below to find the extra install command after installing Chronos.
| TF version | Install CMD |
| ---------------- | --------------------------------------------------------------------------- |
| **2.8** | pip install tensorflow==2.8.0 intel-tensorflow==2.8.0 |
| **2.9** | pip install tensorflow==2.9.0 intel-tensorflow==2.9.1 |
| **2.10** | pip install tensorflow==2.10.0 intel-tensorflow==2.10.0 |
| **2.11** | pip install tensorflow==2.11.0 intel-tensorflow==2.11.0 |
| **2.12** | pip install tensorflow==2.12.0 intel-tensorflow==2.12.0 protobuf==3.20.3 |