Fork of the STT fork of Tensorflow
Go to file
Vijay Vasudevan 028d0b4600 Merge pull request #1213 from vrv/r0.7
Revert "Fix tensorboard import path"
2016-02-19 23:42:14 -08:00
google Fixed several saver_test errors in open source and with python3. 2016-02-11 11:48:53 -08:00
tensorflow Revert "Fix tensorboard import path" 2016-02-19 23:24:52 -08:00
third_party upgrade build to cuda 7.5 and cudnn 4 2016-02-18 15:15:34 -08:00
tools Running our linter on a lot of files. 2016-01-24 23:06:20 -08:00
util/python Using ln -sf in python_config.sh 2016-02-19 20:49:17 -08:00
.gitignore Revert "Revert "Python PIP test-on-install"" 2016-02-04 13:10:22 -08:00
.gitmodules Improvements to TensorFlow android rules 2016-02-09 21:59:45 -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 Change repository names to contain _ instead of - 2016-02-03 14:00:43 -08:00
configure upgrade build to cuda 7.5 and cudnn 4 2016-02-18 15:15:34 -08:00
CONTRIBUTING.md Change contributing.md for new contribution policy. 2015-12-17 17:27:36 -08:00
eigen.BUILD Upgraded to the latest version of Eigen that provides better support for 2016-02-10 23:24:50 -08: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 Update README.md 2016-02-07 23:04:16 -08:00
RELEASE.md Remove scalar strictness from other changes 2016-02-16 13:05:53 -08:00
six.BUILD TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc. 2015-11-12 11:27:00 -08:00
WORKSPACE Change polymer version to 1.2.4 in r0.7 branch to fix broken 2016-02-17 15:22:07 -08: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.

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