commit | 57174f3e6d4de4ced3c6df1ed073637c64e589fc | [log] [tgz] |
---|---|---|
author | Charles Nicholson <nicholsonc@google.com> | Mon Oct 17 07:06:26 2016 -0800 |
committer | TensorFlower Gardener <gardener@tensorflow.org> | Mon Oct 17 08:19:00 2016 -0700 |
tree | e064b60a978e23b3e8c51473e2d455f493df5e2e | |
parent | 64d29a95e41113d4abf7e64cd1f6d8cdb01bc018 [diff] |
Add ProjectorScatterPlotAdapter, which turns 'hover, selected, neighbors' into color / scale / opacity / label arrays to power the scatter plot. I started moving the trace code to be array-driven like the rest of the render attributes, but it turns out that the easiest way to do that is to rewrite the trace visualizer as a generic "LineSegmentVisualizer" that accumulates all line segments into a single render call. Reverted but coming soon. Change: 136351181
Linux CPU | Linux GPU PIP | Mac OS CPU | Android |
---|---|---|---|
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 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.
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.
See Download and Setup 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:
$ 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.