Skip to content

Commit

Permalink
Go/Java: Update links following the 1.0 release.
Browse files Browse the repository at this point in the history
Change: 147636817
  • Loading branch information
asimshankar authored and tensorflower-gardener committed Feb 15, 2017
1 parent 2fc97cd commit cf3a235
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions tensorflow/go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ Construct and execute TensorFlow graphs in Go.
TensorFlow C library will have to be built from source (see below).

- Linux:
[CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.0.0rc2.tar.gz),
[GPU-enabled](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.0.0rc2.tar.gz)
[CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.0.0.tar.gz),
[GPU-enabled](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.0.0.tar.gz)
- OS X
[CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.0.0rc2.tar.gz),
[GPU-enabled](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-darwin-x86_64-1.0.0rc2.tar.gz)
[CPU-only](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.0.0.tar.gz),
[GPU-enabled](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-darwin-x86_64-1.0.0.tar.gz)

The following shell snippet downloads and extracts into `/usr/local`:

```sh
TF_TYPE="cpu" # Set to "gpu" for GPU support
curl -L \
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.0.0rc2.tar.gz" |
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.0.0.tar.gz" |
sudo tar -C /usr/local -xz
```

Expand Down
2 changes: 1 addition & 1 deletion tensorflow/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Java bindings for TensorFlow.

> *WARNING*: The TensorFlow Java API is not currently covered by the TensorFlow
> [API stability guarantees](https://www.tensorflow.org/resources/versions).
> [API stability guarantees](https://www.tensorflow.org/programmers_guide/version_semantics).
>
> For using TensorFlow on Android refer to
> [contrib/android](https://www.tensorflow.org/code/tensorflow/contrib/android),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@
/**
* Defines classes to build, save, load and execute TensorFlow models.
*
* <p><b>WARNING</b>: The API is currently experimental and may change. Follow <a
* href="https://github.com/tensorflow/tensorflow/issues/5">issue #5</a> for updates. See <a
* <p><b>WARNING</b>: The API is currently experimental and is not covered by TensorFlow <a
* href="https://www.tensorflow.org/programmers_guide/version_semantics">API stability
* quarantees</a>. See <a
* href="https://www.tensorflow.org/code/tensorflow/java/README.md">README.md</a>
* for installation instructions.
*
Expand Down

0 comments on commit cf3a235

Please sign in to comment.