Install TensorFlow Model Optimization

It is recommended to create a Python virtual environment before proceeding to the installation. Please see the TensorFlow installation guide for more information.

Stable Builds

To install the latest version, run the following:

# Installing with the `--upgrade` flag ensures you'll get the latest version.
pipinstall--user--upgradetensorflow-model-optimization

For release details, see our release notes.

For the required version of TensorFlow and other compatibility information, see the API Compatibility Matrix section of the Overview page for the technique you intend to use. For instance, for pruning, the Overview page is here.

Since TensorFlow is not included as a dependency of the TensorFlow Model Optimization package (in setup.py), you must explicitly install the TensorFlow package (tf-nightly or tf-nightly-gpu). This allows us to maintain one package instead of separate packages for CPU and GPU-enabled TensorFlow.

Installing from Source

You can also install from source. This requires the Bazel build system.

# To install dependencies on Ubuntu:
# sudo apt-get install bazel git python-pip
# For other platforms, see Bazel docs above.
gitclonehttps://github.com/tensorflow/model-optimization.git
cdmodel-optimization
bazelbuild--copt=-O3--copt=-march=native:pip_pkg
PKGDIR=$(mktemp-d)
./bazel-bin/pip_pkg$PKGDIR
pipinstall--user--upgrade$PKGDIR/*.whl

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2022年08月03日 UTC.