diff --git a/README.md b/README.md
index 608080432bd..b4155dbdde7 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Intel® Neural Compressor
An open-source Python library supporting popular model compression techniques on all mainstream deep learning frameworks (TensorFlow, PyTorch, ONNX Runtime, and MXNet)
[![python](https://img.shields.io/badge/python-3.8%2B-blue)](https://github.com/intel/neural-compressor)
-[![version](https://img.shields.io/badge/release-2.5-green)](https://github.com/intel/neural-compressor/releases)
+[![version](https://img.shields.io/badge/release-2.6-green)](https://github.com/intel/neural-compressor/releases)
[![license](https://img.shields.io/badge/license-Apache%202-blue)](https://github.com/intel/neural-compressor/blob/master/LICENSE)
[![coverage](https://img.shields.io/badge/coverage-85%25-green)](https://github.com/intel/neural-compressor)
[![Downloads](https://static.pepy.tech/personalized-badge/neural-compressor?period=total&units=international_system&left_color=grey&right_color=green&left_text=downloads)](https://pepy.tech/project/neural-compressor)
diff --git a/conda_meta/basic/meta.yaml b/conda_meta/basic/meta.yaml
deleted file mode 100644
index c894131132e..00000000000
--- a/conda_meta/basic/meta.yaml
+++ /dev/null
@@ -1,48 +0,0 @@
-{% set version = "2.6" %}
-{% set buildnumber = 0 %}
-package:
- name: neural-compressor
- version: {{version}}
-build:
- script_env:
- - NC_WHL
- number: {{buildnumber}}
- noarch: python
- script: pip install --no-deps {{NC_WHL}}
-requirements:
- build:
- - python
- - pip
- run:
- - python
- - pip
- - numpy
- - pyyaml
- - scikit-learn
- - schema
- - py-cpuinfo
- - pandas
- - pycocotools
- - opencv-python-headless
- - psutil
- - Pillow
- - requests
- - prettytable
- - packaging
- - deprecated
-test:
- imports:
- - neural_compressor
-about:
- home: https://github.com/intel/neural-compressor
- license: Apache 2.0
- license_family: Apache
- license_file: ../../LICENSE
- description: '
- LEGAL NOTICE: Use of this software package is subject to the software license agreement (as set forth above, in the license section of the installed Conda package and/or the README file) and all notices, disclaimers or license terms for third party or open source software included in or with the software.
-
- EULA: Apache 2.0
- Third Party Programs: https://github.com/intel/neural-compressor/blob/master/third-party-programs.txt
-
- Intel® Neural Compressor.
- '
diff --git a/conda_meta/neural_insights/meta.yaml b/conda_meta/neural_insights/meta.yaml
deleted file mode 100644
index add638448ad..00000000000
--- a/conda_meta/neural_insights/meta.yaml
+++ /dev/null
@@ -1,43 +0,0 @@
-{% set version = "2.6" %}
-{% set buildnumber = 0 %}
-package:
- name: neural-insights
- version: {{version}}
-build:
- script_env:
- - NC_WHL
- number: {{buildnumber}}
- noarch: python
- script: pip install --no-deps {{NC_WHL}}
- entry_points:
- - neural_insights = neural_insights.bin.neural_insights:main
-requirements:
- build:
- - python
- - pip
- run:
- - python
- - pip
- - neural-compressor>=2.2
- - Flask
- - Flask-Cors
- - Flask-SocketIO
- - gevent
- - gevent-websocket
- - pywin32 # [win]
-test:
- imports:
- - neural_insights
-about:
- home: https://github.com/intel/neural-compressor
- license: Apache 2.0
- license_family: Apache
- license_file: ../../LICENSE
- description: '
- LEGAL NOTICE: Use of this software package is subject to the software license agreement (as set forth above, in the license section of the installed Conda package and/or the README file) and all notices, disclaimers or license terms for third party or open source software included in or with the software.
-
- EULA: Apache 2.0
- Third Party Programs: https://github.com/intel/neural-compressor/blob/master/third-party-programs.txt
-
- Intel® Neural Compressor.
- '
diff --git a/conda_meta/neural_solution/meta.yaml b/conda_meta/neural_solution/meta.yaml
deleted file mode 100644
index cef0297fb5d..00000000000
--- a/conda_meta/neural_solution/meta.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
-{% set version = "2.6" %}
-{% set buildnumber = 0 %}
-package:
- name: neural-solution
- version: {{version}}
-build:
- script_env:
- - NC_WHL
- number: {{buildnumber}}
- noarch: python
- script: pip install --no-deps {{NC_WHL}}
- entry_points:
- - neural_solution = neural_solution.bin.neural_solution:main
-requirements:
- build:
- - python
- - pip
- run:
- - python
- - pip
- - neural-compressor>=2.2
- - pydantic
- - fastapi
- - uvicorn[standard]
- - watchdog
- - protobuf
- - grpcio
- - mpi4py
-test:
- imports:
- - neural_solution
-about:
- home: https://github.com/intel/neural-compressor
- license: Apache 2.0
- license_family: Apache
- license_file: ../../LICENSE
- description: '
- LEGAL NOTICE: Use of this software package is subject to the software license agreement (as set forth above, in the license section of the installed Conda package and/or the README file) and all notices, disclaimers or license terms for third party or open source software included in or with the software.
-
- EULA: Apache 2.0
- Third Party Programs: https://github.com/intel/neural-compressor/blob/master/third-party-programs.txt
-
- Intel® Neural Compressor.
- '
diff --git a/docs/source/installation_guide.md b/docs/source/installation_guide.md
index d73f885d403..c99e09e0340 100644
--- a/docs/source/installation_guide.md
+++ b/docs/source/installation_guide.md
@@ -52,27 +52,15 @@ The following prerequisites and requirements must be satisfied for a successful
pip install -i https://test.pypi.org/simple/ neural-compressor
```
-- Install from Conda
- ```Shell
- # install on Linux OS
- conda install opencv-python-headless -c fastai
- conda install neural-compressor -c conda-forge -c intel
- ```
- ```Shell
- # install on Windows OS
- conda install pycocotools -c esri
- conda install opencv-python-headless -c fastai
- conda install neural-compressor -c conda-forge -c intel
- ```
-
### Install from Source
```Shell
git clone https://github.com/intel/neural-compressor.git
cd neural-compressor
pip install -r requirements.txt
- # build with basic functionality
python setup.py install
+ [optional] pip install requirements_pt.txt # for PyTorch framework extension API
+ [optional] pip install requirements_tf.txt # for TensorFlow framework extension API
```
### Install from AI Kit
@@ -112,7 +100,6 @@ The AI Kit is distributed through many common channels, including from Intel's w
Framework |
TensorFlow |
- Intel TensorFlow |
Intel® Extension for TensorFlow* |
PyTorch |
Intel® Extension for PyTorch* |
@@ -122,25 +109,26 @@ The AI Kit is distributed through many common channels, including from Intel's w
Version |
- 2.15.0
- 2.14.1
- 2.13.1
|
- 2.14.0
- 2.13.0
|
- 2.14.0.1
+ |
+ 2.16.1
+ 2.15.0
+ 2.14.1
|
+
+ 2.15.0.0
+ 2.14.0.1
2.13.0.0
|
- 2.2.1
- 2.1.0
- 2.0.1
|
- 2.2.0
- 2.1.100
- 2.0.100
|
- 1.17.1
- 1.16.3
- 1.15.1
|
+
+ 2.3.0
+ 2.2.2
+ 2.1.1
|
+
+ 2.3.0
+ 2.2.0
+ 2.1.100
|
+
+ 1.18.0
+ 1.17.3
+ 1.16.3
|
-
-> **Note:**
-> Set the environment variable ``TF_ENABLE_ONEDNN_OPTS=1`` to enable oneDNN optimizations if you are using TensorFlow before v2.9. oneDNN is the default for TensorFlow since [v2.9](https://github.com/tensorflow/tensorflow/releases/tag/v2.9.0) ([Intel Cascade Lake](https://www.intel.com/content/www/us/en/products/platforms/details/cascade-lake.html) and newer CPUs).