Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add table of corresponding versions for backends #2161

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Use the same `pip install` syntax as above to install NNCF along with the backen
pip install .[<BACKEND>]
```

List of supported backends: `torch`, `tf`, `onnx` and `openvino`.
List of supported backends: `torch`, `tf`, `onnx` and `openvino`.

For development purposes install extra packages by

Expand All @@ -61,3 +61,14 @@ Note that in order for this to work for pip versions >= 21.3, your Git version m
## As a Docker image

Use one of the Dockerfiles in the [docker](../docker) directory to build an image with an environment already set up and ready for running NNCF [sample scripts](../README.md#model-compression-samples).

## Corresponding versions

The following table lists the recommended corresponding versions of backend packages
as well as the supported versions of Python:

| NNCF | OpenVINO | PyTorch | ONNX | ONNX Runtime | TensorFlow | Python |
| ------- | ---------- | ------------------- | -------- | -------------- | ------------ | ---------------- |
| `2.6.0` | `2023.1.0` | `>=1.13.0`, `<2.1` | `1.13.1` | `1.14.1` | `2.12.0` | `>=3.7`, `<3.11` |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What backend versions do you want to provide? Do I mean backend versions that were used for testing or backend versions that were stated to be supported? In any case, please, align your table with Readme.txt.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated, get versions from README.md

| `2.5.0` | `2023.0.0` | `>=1.9.1`, `<1.14` | `1.13.1` | `1.14.1` | `2.11.1` | `>=3.7`, `<3.11` |
| `2.4.0` | `2022.1.0` | `>=1.8.2`, `<1.14` | `1.12.0` | `1.13.1` | `2.8.4` | `>=3.7`, `<3.11` |