Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ Kotlin, are frequently used in large and small enterprises all over the world,
which makes TensorFlow Java a strategic choice for adopting machine learning at
a large scale.

Caution: The TensorFlow Java API is *not* covered by the TensorFlow
[API stability guarantees](https://www.tensorflow.org/guide/versions).
Note: Starting from version 1.0.0, the TensorFlow Java project follows the
[TensorFlow API stability guarantees](https://www.tensorflow.org/guide/versions#api_stability).
However, as these bindings are downstream of the TensorFlow C API, users should
be aware that stability is subject to the evolution of the upstream TensorFlow core.

## Requirements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
/**
* Defines classes to build, save, load and execute TensorFlow models.
*
* <p><b>WARNING</b>: The API is currently experimental and is not covered by TensorFlow <a
* href="https://www.tensorflow.org/guide/version_compat">API stability guarantees</a>. See <a
* href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/java/README.md">README.md</a>
* <p><b>API Stability</b>: Since version 1.0.0, the TensorFlow Java API is covered by
* TensorFlow <a href="https://www.tensorflow.org/guide/versions#api_stability">API stability guarantees</a>.
* Please note that as this library is a wrapper for the TensorFlow C API, its stability is
* subject to the stability of the underlying upstream TensorFlow project. See the
* <a href="https://github.com/tensorflow/java/blob/master/README.md">README.md</a>
* for installation instructions.
*
* <p>The <a
Expand Down
Loading