TensorFlow是一个用于机器学习的端到端开源平台

A. Unique TensorFlower 235b0de133 Internal Code Change 19 hours ago
.github 4500cab9d6 [Linaro:ARM_CI] Allow all jobs in matrix to complete 1 week ago
tensorflow 235b0de133 Internal Code Change 19 hours ago
third_party 1575ff5db4 Integrate LLVM at llvm/llvm-project@217709cbae34 1 day ago
tools b6dedcb917 Merge pull request #25673 from Ryan-Qiyu-Jiang:env_capture_script_more_system_info_update 4 years ago
.bazelrc 8fd1d6770a Updates Bazel version from 5.3.0 to 6.1.0 1 week ago
.bazelversion 8fd1d6770a Updates Bazel version from 5.3.0 to 6.1.0 1 week ago
.clang-format 6703e91046 [.clang-format] Init @ root 1 year ago
.gitignore 82443287e4 Ignore CoreML BUILD files which are generated by the configure script 3 years ago
.pylintrc b6c5a9fb8e Add soft-link to pylintrc to project root 4 years ago
.zenodo.json 1e900260c8 Add .zenodo.json for clean automated DOI numbers. 2 years ago
AUTHORS 37acea8b98 Add Arm Ltd to AUTHORS 1 year ago
BUILD da0884c7d4 [NFC, internal change] Polish copybara workflow file. 2 years ago
CITATION.cff 0c825e6705 Add CITATION.cff 1 year ago
CODEOWNERS 34b96570c4 Remove myself from CODEOWNERS as I will no longer be in TF. 1 year ago
CODE_OF_CONDUCT.md 21c8e5735f Update CODE_OF_CONDUCT and fix broken sync 2 years ago
CONTRIBUTING.md ba9dd9a175 Fix formatting of the CONTRIBUTING.md section on PRs. 2 months ago
ISSUES.md 556ab089ea Internal change 2 years ago
ISSUE_TEMPLATE.md 9244dd50fc Merge pull request #40033 from AbdulBaseerMohammedKhan:master 3 years ago
LICENSE 5cbf38a7ca Remove duplicate LICENSE information for third_party dependencies and add license information from ACKNOWLEDGEMENTS to main license file. 1 year ago
README.md 9f135641ed Fix badge style on README 3 weeks ago
RELEASE.md 87b657b6a5 Add new API to get the current dtensor default mesh. 2 days ago
SECURITY.md 83b395bbc4 Announce sunset of TFSAs, moving to rely solely on CVEs. 1 month ago
WORKSPACE e70a5f4243 Prevent buildifier warning in WORKSPACE file. 2 years ago
arm_compiler.BUILD 1b066f11ad Update the `compiler_pieces` of the RPi ARM compiler. 2 years ago
configure 5ba24e758e perfer python3 to compile 3 years ago
configure.cmd f4fe351074 Update configure.cmd 2 years ago
configure.py bdf72f5aab Removes the `--flaky_test_attempts=2` flag from the test jobs. 2 weeks ago
fuzztest.bazelrc 2bcd8a573a Add fuzztest.bazelrc and tf_fuzztest config to .bazelrc 4 months ago
models.BUILD 64c6ecdfd1 Make models.BUILD filegroup include everything but metadata files and archives. 6 years ago

README.md

Python PyPI DOI CII Best Practices OpenSSF Scorecard Fuzzing Status Fuzzing Status OSSRank Contributor Covenant TF Official Continuous TF Official Nightly

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 on the Google Brain team within Google's Machine Intelligence Research organization to conduct machine learning and deep neural networks research. The system is general enough to be applicable in a wide variety of other domains, as well.

TensorFlow provides stable Python and C++ APIs, as well as 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