Fork of the STT fork of Tensorflow
Go to file
A. Unique TensorFlower 7552e9e561 Add build ruiles to CTC
Change: 115720167
2016-02-29 10:46:35 -08:00
google Updated protobuf submodule to fb714b3 to bring in updates to grpc support 2016-02-25 12:39:44 -08:00
tensorflow Add build ruiles to CTC 2016-02-29 10:46:35 -08:00
third_party Upgraded Eigen to fix a compilation error triggered by xcode 2016-02-22 15:56:27 -08:00
tools Enable deserializing protos > 64MB in length. 2016-02-18 12:50:36 -08:00
util/python Merge changes from GitHub, clean up linter errors, fix dependencies test. 2016-02-07 12:51:05 -08:00
.gitignore TensorFlow: upstream changes to git. 2015-12-04 09:54:09 -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 Update TensorBoard dependencies versions. 2016-02-25 18:09:12 -08:00
configure TensorFlow: perl command in configure script was not properly replacing 2016-02-25 13:46:10 -08:00
CONTRIBUTING.md Change contributing.md for new contribution policy. 2015-12-17 17:27:36 -08:00
eigen.BUILD Upgraded Eigen to fix a compilation error triggered by xcode 2016-02-22 15:56:27 -08:00
ISSUE_TEMPLATE.md TensorFlow: Small wording changes on ISSUE_TEMPLATE, move 2016-02-17 17:50:38 -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 Merge changes from github. 2016-02-17 12:56:41 -08:00
RELEASE.md Merge changes from github. 2016-02-17 12:56:41 -08:00
six.BUILD TensorFlow: Minor updates to docs, BUILD, GPU config / perf, etc. 2015-11-12 11:27:00 -08:00
WORKSPACE Initial version of the open-source distributed TensorFlow runtime. 2016-02-25 20:15:52 -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