Fork of the STT fork of Tensorflow
Go to file
2016-04-22 13:51:21 -07:00
google Updated protobuf submodule to fb714b3 to bring in updates to grpc support 2016-02-25 12:39:44 -08:00
tensorflow Update cuda instructions to be more specific about versions () 2016-04-22 13:51:21 -07:00
third_party merge internal changes 2016-04-11 16:46:46 -07:00
tools Merge commit for internal changes 2016-03-28 18:24:13 -07:00
util/python Avoiding hard-coded bash path 2016-03-14 01:26:31 +08:00
.gitignore Add __pycache__ to .gitignore 2016-03-22 14:43:45 -07:00
.gitmodules TensorFlow: Upstream changes to git. 2015-11-08 15:14:37 -08:00
ACKNOWLEDGMENTS TensorFlow: Improve performance of Alexnet 2015-11-20 10:30:41 -08:00
AUTHORS TensorFlow: Initial commit of TensorFlow library. 2015-11-06 16:27:58 -08:00
bower.BUILD Update TensorBoard dependencies. 2016-04-01 19:08:22 -07:00
configure Merge changes from github. 2016-03-29 19:33:33 -07:00
CONTRIBUTING.md Change contributing.md for new contribution policy. 2015-12-17 17:27:36 -08:00
eigen.BUILD Made isinf, isnan, isfinite, ceil and floor work with 16 bit floats. 2016-04-09 16:41:53 -07:00
ISSUE_TEMPLATE.md Add Cuda/Cudnn version request () 2016-04-07 09:50:53 -07:00
jpeg.BUILD TensorFlow: Initial commit of TensorFlow library. 2015-11-06 16:27:58 -08:00
LICENSE TensorFlow: Initial commit of TensorFlow library. 2015-11-06 16:27:58 -08:00
navbar.md TensorFlow: Upstream changes to git. 2015-11-08 21:04:29 -08:00
png.BUILD TensorFlow: Initial commit of TensorFlow library. 2015-11-06 16:27:58 -08:00
README.md Version bumping for 0.8.0 final release () 2016-04-15 08:48:13 -07:00
RELEASE.md Update RELEASE.md () 2016-04-17 00:17:38 -07:00
six.BUILD TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc. 2015-11-12 11:27:00 -08:00
WORKSPACE Update released TensorBoard. 2016-04-11 16:43:10 -07:00



-----------------
Linux CPU Linux GPU PIP Mac OS CPU Android
Build Status Build Status Build Status Build Status

TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) that flow between them. This flexible architecture lets you deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device without rewriting code. 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.

If you'd like to contribute to tensorflow, be sure to review the contribution guidelines.

We use github issues for tracking requests and bugs, but please see Community for general questions and discussion.

Installation

See Download and Setup for instructions on how to install our release binaries or how to build from source.

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

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
>>>

##For more information

The TensorFlow community has created amazing things with TensorFlow, please see the resources section of tensorflow.org for an incomplete list.