An Open Source Machine Learning Framework for Everyone tensorflow.org
Go to file
Francisco Unda 58bae0da4e Announcement about deprecating tf lite within TF.
PiperOrigin-RevId: 777736971
2025-06-30 15:20:37 -07:00
.github Correctly remove user from assignees list 2025-06-30 09:38:59 -07:00
ci Rollback integration of hermetic C++ toolchains in Tensorflow as they increase the wheel size and raise the value of manyLinux compliancy tag. 2025-06-26 14:16:01 -07:00
tensorflow Don't handle empty reductions in XNNPACK delegate 2025-06-30 09:31:29 -07:00
third_party Check operands of elementwise ops offloaded to xnnpack. 2025-06-30 14:10:15 -07:00
tools Added comments 2025-03-16 16:33:20 -06:00
.bazelignore Migrate TensorFlow on newest Hermetic Python set of rules 2024-06-28 17:19:18 -07:00
.bazelrc add no_oss_py313 tag to following max python test 2025-06-30 14:20:07 -07:00
.bazelversion Upgrade to Bazel 7.4.1 for TensorFlow 2025-02-26 09:27:14 -08:00
.clang-format
.gitignore Added venv/ to .gitignore 2024-11-30 16:41:32 -05:00
.pylintrc
.zenodo.json
arm_compiler.BUILD
AUTHORS
BUILD Refactor mechanisms of building TF wheel and storing TF project version. 2025-03-04 14:39:12 -08:00
CITATION.cff
CODE_OF_CONDUCT.md
CODEOWNERS
configure
configure.cmd
configure.py Merge pull request #86943 from Flamefire:remove-unused-vars 2025-04-30 08:18:54 -07:00
CONTRIBUTING.md Adjust the build config to an existing value defined in .bazelrc 2025-01-10 20:47:59 -08:00
ISSUES.md
LICENSE
models.BUILD
README.md Remove outdated build badges 2025-04-28 13:38:34 -07:00
RELEASE.md Announcement about deprecating tf lite within TF. 2025-06-30 15:20:37 -07:00
requirements_lock_3_9.txt Merge pull request #95621 from tensorflow:dependabot/pip/urllib3-2.5.0 2025-06-23 01:14:08 -07:00
requirements_lock_3_10.txt Merge pull request #95621 from tensorflow:dependabot/pip/urllib3-2.5.0 2025-06-23 01:14:08 -07:00
requirements_lock_3_11.txt Merge pull request #95621 from tensorflow:dependabot/pip/urllib3-2.5.0 2025-06-23 01:14:08 -07:00
requirements_lock_3_12.txt Merge pull request #95621 from tensorflow:dependabot/pip/urllib3-2.5.0 2025-06-23 01:14:08 -07:00
requirements_lock_3_13.txt Merge pull request #95621 from tensorflow:dependabot/pip/urllib3-2.5.0 2025-06-23 01:14:08 -07:00
SECURITY.md removed extra period 2024-10-16 21:40:43 +05:30
WORKSPACE Integrate hermetic ML toolchains for TensorFlow. 2025-06-25 11:43:53 -07:00

Python PyPI DOI CII Best Practices OpenSSF Scorecard Fuzzing Status Fuzzing Status OSSRank Contributor Covenant

Documentation
Documentation

TensorFlow is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries, and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML-powered applications.

TensorFlow was originally developed by researchers and engineers working within the Machine Intelligence team at Google Brain to conduct research in machine learning and neural networks. However, the framework is versatile enough to be used in other areas as well.

TensorFlow provides stable Python and C++ APIs, as well as a non-guaranteed backward compatible API for other languages.

Keep up-to-date with release announcements and security updates by subscribing to announce@tensorflow.org. See all the mailing lists.

Install

See the TensorFlow install guide for the pip package, to enable GPU support, use a Docker container, and build from source.

To install the current release, which includes support for CUDA-enabled GPU cards (Ubuntu and Windows):

$ pip install tensorflow

Other devices (DirectX and MacOS-metal) are supported using Device plugins.

A smaller CPU-only package is also available:

$ pip install tensorflow-cpu

To update TensorFlow to the latest version, add --upgrade flag to the above commands.

Nightly binaries are available for testing using the tf-nightly and tf-nightly-cpu packages on PyPI.

Try your first TensorFlow program

$ python
>>> import tensorflow as tf
>>> tf.add(1, 2).numpy()
3
>>> hello = tf.constant('Hello, TensorFlow!')
>>> hello.numpy()
b'Hello, TensorFlow!'

For more examples, see the TensorFlow tutorials.

Contribution guidelines

If you want to contribute to TensorFlow, be sure to review the contribution guidelines. This project adheres to TensorFlow's code of conduct. By participating, you are expected to uphold this code.

We use GitHub issues for tracking requests and bugs, please see TensorFlow Forum for general questions and discussion, and please direct specific questions to Stack Overflow.

The TensorFlow project strives to abide by generally accepted best practices in open-source software development.

Patching guidelines

Follow these steps to patch a specific version of TensorFlow, for example, to apply fixes to bugs or security vulnerabilities:

  • Clone the TensorFlow repo and switch to the corresponding branch for your desired TensorFlow version, for example, branch r2.8 for version 2.8.
  • Apply (that is, cherry-pick) the desired changes and resolve any code conflicts.
  • Run TensorFlow tests and ensure they pass.
  • Build the TensorFlow pip package from source.

Continuous build status

You can find more community-supported platforms and configurations in the TensorFlow SIG Build community builds table.

Official Builds

Build Type Status Artifacts
Linux CPU Status PyPI
Linux GPU Status PyPI
Linux XLA Status TBA
macOS Status PyPI
Windows CPU Status PyPI
Windows GPU Status PyPI
Android Status Download
Raspberry Pi 0 and 1 Status Py3
Raspberry Pi 2 and 3 Status Py3
Libtensorflow MacOS CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Linux CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Linux GPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Windows CPU Status Temporarily Unavailable Nightly Binary Official GCS
Libtensorflow Windows GPU Status Temporarily Unavailable Nightly Binary Official GCS

Resources

Learn more about the TensorFlow community and how to contribute.

Courses

License

Apache License 2.0