Fork of the STT fork of Tensorflow
Go to file
Reed Wanderman-Milne 716d15118f Update minimum bazel version to 0.13.0.
I was using bazel 0.12.0 and was getting the error:

file '@bazel_tools//tools/cpp:windows_cc_configure.bzl' does not contain symbol 'setup_vc_env_vars'

PiperOrigin-RevId: 205316270
2018-07-19 15:55:52 -07:00
tensorflow Merge pull request from aaroey:fix_plugin_factory_test 2018-07-19 15:49:14 -07:00
third_party Merge pull request from erain:feature/py-py3-toolchain-config 2018-07-19 13:11:32 -07:00
tools Merge pull request from Intel-tensorflow:mabuzain/avx-performance-fix 2018-07-13 14:42:57 -07:00
.gitignore Merge changes from github. 2018-06-28 19:16:41 -07:00
ACKNOWLEDGMENTS TensorFlow: Improve performance of Alexnet 2015-11-20 10:30:41 -08:00
ADOPTERS.md Internal file cleanup. 2016-10-18 10:31:29 -07:00
arm_compiler.BUILD Merge changes from github. 2017-07-28 11:03:31 -07:00
AUTHORS Merge changes from github. 2017-12-06 18:47:41 -08:00
BUILD Make LICENSE visible to bazel. 2018-01-02 12:37:06 -08:00
CODE_OF_CONDUCT.md Merge changes from github. 2017-12-28 16:08:58 -08:00
CODEOWNERS Add myself into code ownder for tensor_forest 2018-04-13 16:07:36 -04:00
configure Make configure script runnable from external workspace. () 2018-02-21 20:39:21 -08:00
configure.py Update minimum bazel version to 0.13.0. 2018-07-19 15:55:52 -07:00
CONTRIBUTING.md Update Google Python Style Guide link () 2018-07-02 10:37:26 -07:00
ISSUE_TEMPLATE.md Add mobile device field to the issue template. 2018-07-18 11:03:37 -07:00
LICENSE Merge changes from github. 2018-01-03 19:10:47 -08:00
models.BUILD Make models.BUILD filegroup include everything but metadata files and archives. 2017-01-10 14:25:53 -08:00
README.md Merge changes from github. 2018-07-02 17:10:57 -07:00
RELEASE.md Merge remote-tracking branch 'origin/r1.9' into merge_19_into_master 2018-07-11 13:30:00 -07:00
SECURITY.md fix md link format 2018-06-13 12:14:52 -07:00
WORKSPACE Update minimum bazel version to 0.13.0. 2018-07-19 15:55:52 -07:00




Documentation
Documentation

TensorFlow is an open source software library for numerical computation using data flow graphs. The graph nodes represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture enables you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device without rewriting code. TensorFlow also includes TensorBoard, a data visualization toolkit.

TensorFlow was originally developed by researchers and engineers working on the Google Brain team within Google's Machine Intelligence Research organization for the purposes of conducting machine learning and deep neural networks research. The system is general enough to be applicable in a wide variety of other domains, as well.

Keep up to date with release announcements and security updates by subscribing to announce@tensorflow.org.

Installation

See Installing TensorFlow for instructions on how to install our release binaries or how to build from source.

People who are a little more adventurous can also try our nightly binaries:

Nightly pip packages

  • We are pleased to announce that TensorFlow now offers nightly pip packages under the tf-nightly and tf-nightly-gpu project on pypi. Simply run pip install tf-nightly or pip install tf-nightly-gpu in a clean environment to install the nightly TensorFlow build. We support CPU and GPU packages on Linux, Mac, and Windows.

Try your first TensorFlow program

$ python
>>> import tensorflow as tf
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> sess.run(hello)
'Hello, TensorFlow!'
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> sess.run(a + b)
42
>>> sess.close()

Learn more examples about how to do specific tasks in TensorFlow at the tutorials page of tensorflow.org.

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. So please see TensorFlow Discuss 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:

CII Best Practices

Continuous build status

Official Builds

Build Type Status Artifacts
Linux CPU Status pypi
Linux GPU Status pypi
Linux XLA TBA TBA
MacOS Status pypi
Windows CPU Status pypi
Windows GPU Status pypi
Android Status Download demo APK, native libs build history

Community Supported Builds

Build Type Status Artifacts
IBM s390x Build Status TBA
IBM ppc64le CPU Build Status TBA
IBM ppc64le GPU Build Status TBA
Linux CPU with Intel® MKL-DNN® Build Status TBA

For more information

Learn more about the TensorFlow community at the community page of tensorflow.org for a few ways to participate.

License

Apache License 2.0