Skip to content

Commit c5664bb

Browse files
committed
update to v1.8
1 parent e1d7563 commit c5664bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1831
-432
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88
| **`Documentation`** | **`Linux CPU`** | **`Linux GPU`** | **`Mac OS CPU`** | **`Windows CPU`** | **`Android`** |
99
|-----------------|---------------------|------------------|-------------------|---------------|---------------|
10-
| [![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://www.tensorflow.org/api_docs/) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-cpu)](https://ci.tensorflow.org/job/tensorflow-master-cpu) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-linux-gpu)](https://ci.tensorflow.org/job/tensorflow-master-linux-gpu) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-mac)](https://ci.tensorflow.org/job/tensorflow-master-mac) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-win-cmake-py)](https://ci.tensorflow.org/job/tensorflow-master-win-cmake-py) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-android)](https://ci.tensorflow.org/job/tensorflow-master-android) [ ![Download](https://api.bintray.com/packages/google/tensorflow/tensorflow/images/download.svg) ](https://bintray.com/google/tensorflow/tensorflow/_latestVersion)
10+
| [![Documentation](https://img.shields.io/badge/api-reference-blue.svg)](https://www.tensorflow.org/api_docs/) | ![Build Status](https://storage.cloud.google.com/tensorflow-kokoro-build-badges/ubuntu-cc.png) | ![Build Status](https://storage.cloud.google.com/tensorflow-kokoro-build-badges/ubuntu-gpu-cc.png) | ![Build Status](https://storage.cloud.google.com/tensorflow-kokoro-build-badges/macos-py2-cc.png) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-win-cmake-py)](https://ci.tensorflow.org/job/tensorflow-master-win-cmake-py) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-android)](https://ci.tensorflow.org/job/tensorflow-master-android) [ ![Download](https://api.bintray.com/packages/google/tensorflow/tensorflow/images/download.svg) ](https://bintray.com/google/tensorflow/tensorflow/_latestVersion)
1111

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

@@ -22,6 +22,10 @@ organization for the purposes of conducting machine learning and deep neural
2222
networks research. The system is general enough to be applicable in a wide
2323
variety of other domains, as well.
2424

25+
Keep up to date with release announcements and security updates by
26+
subscribing to
27+
[[email protected]](https://groups.google.com/a/tensorflow.org/forum/#!forum/announce).
28+
2529
## Installation
2630
*See [Installing TensorFlow](https://www.tensorflow.org/get_started/os_setup.html) for instructions on how to install our release binaries or how to build from source.*
2731

@@ -82,6 +86,7 @@ The TensorFlow project strives to abide by generally accepted best practices in
8286

8387
* [TensorFlow Website](https://www.tensorflow.org)
8488
* [TensorFlow White Papers](https://www.tensorflow.org/about/bib)
89+
* [TensorFlow YouTube Channel](https://www.youtube.com/channel/UC0rqucBdTuFTjJiefW5t-IQ)
8590
* [TensorFlow Model Zoo](https://github.com/tensorflow/models)
8691
* [TensorFlow MOOC on Udacity](https://www.udacity.com/course/deep-learning--ud730)
8792
* [TensorFlow Course at Stanford](https://web.stanford.edu/class/cs20si)

deploy/deploy_to_js.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Deploy to JavaScript
2+
3+
You can find details about deploying JavaScript TensorFlow programs
4+
in the separate [js.tensorflow.org site](https://js.tensorflow.org).

deploy/leftnav_files

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ index.md
22
distributed.md
33
hadoop.md
44
s3.md
5+
deploy_to_js.md

extend/add_filesys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ it will use the `FooBarFileSystem` implementation.
225225
Next, you must build a shared object containing this implementation. An example
226226
of doing so using bazel's `cc_binary` rule can be found
227227
[here](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/BUILD#L244),
228-
but you may use any build system to do so. See the section on @{$adding_an_op#build-the-op-library$building the op library} for similar
228+
but you may use any build system to do so. See the section on @{$adding_an_op#build_the_op_library$building the op library} for similar
229229
instructions.
230230

231231
The result of building this target is a `.so` shared object file.

extend/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ TensorFlow:
1616
for your own file and record formats.
1717

1818
Python is currently the only language supported by TensorFlow's API stability
19-
promises. However, TensorFlow also provides functionality in C++, Java, and Go,
19+
promises. However, TensorFlow also provides functionality in C++, Go, Java and
20+
[JavaScript](https://js.tensorflow.org),
2021
plus community support for [Haskell](https://github.com/tensorflow/haskell) and
21-
[Rust](https://github.com/tensorflow/rust). If you'd like to create or
22+
[Rust](https://github.com/tensorflow/rust). If you'd like to create or
2223
develop TensorFlow features in a language other than these languages, read the
2324
following guide:
2425

0 commit comments

Comments
 (0)