Clear deleted api_guide links.
These guides have been deleted (had no content). fixes #23443 PiperOrigin-RevId: 219881820
This commit is contained in:
parent
48a56c3dbe
commit
09f82cbffd
@ -14,8 +14,6 @@
|
||||
# ==============================================================================
|
||||
"""Linear-chain CRF layer.
|
||||
|
||||
See the [CRF](https://tensorflow.org/api_guides/python/contrib.crf) guide.
|
||||
|
||||
@@crf_binary_score
|
||||
@@crf_decode
|
||||
@@crf_log_likelihood
|
||||
|
@ -15,10 +15,6 @@
|
||||
|
||||
"""Framework utilities.
|
||||
|
||||
See the
|
||||
[Contrib Framework](https://tensorflow.org/api_guides/python/contrib.framework)
|
||||
guide.
|
||||
|
||||
@@assert_same_float_dtype
|
||||
@@assert_scalar
|
||||
@@assert_scalar_int
|
||||
|
@ -14,10 +14,6 @@
|
||||
# ==============================================================================
|
||||
"""Ops for building neural network layers, regularizers, summaries, etc.
|
||||
|
||||
See the
|
||||
[Contrib Layers](https://tensorflow.org/api_guides/python/contrib.layers)
|
||||
guide.
|
||||
|
||||
@@avg_pool2d
|
||||
@@avg_pool3d
|
||||
@@batch_norm
|
||||
|
@ -19,9 +19,6 @@ This module and all its submodules are deprecated. See
|
||||
[contrib/learn/README.md](https://www.tensorflow.org/code/tensorflow/contrib/learn/README.md)
|
||||
for migration instructions.
|
||||
|
||||
See the [Contrib Learn](https://tensorflow.org/api_guides/python/contrib.learn)
|
||||
guide.
|
||||
|
||||
@@BaseEstimator
|
||||
@@Estimator
|
||||
@@Trainable
|
||||
|
@ -14,8 +14,6 @@
|
||||
# ==============================================================================
|
||||
"""RNN Cells and additional RNN operations.
|
||||
|
||||
See [Contrib RNN](https://tensorflow.org/api_guides/python/contrib.rnn) guide.
|
||||
|
||||
<!--From core-->
|
||||
@@RNNCell
|
||||
@@LayerRNNCell
|
||||
|
@ -15,8 +15,6 @@
|
||||
|
||||
"""Utilities for dealing with Tensors.
|
||||
|
||||
See [Contrib Util](https://tensorflow.org/api_guides/python/contrib.util) guide.
|
||||
|
||||
@@constant_value
|
||||
@@make_tensor_proto
|
||||
@@make_ndarray
|
||||
|
@ -95,11 +95,10 @@ tflite_convert \
|
||||
|
||||
The TensorFlow Lite Converter is compatible with fixed point quantization models
|
||||
described [here](https://www.tensorflow.org/performance/quantization). These are
|
||||
float models with
|
||||
[`FakeQuant*`](https://www.tensorflow.org/api_guides/python/array_ops#Fake_quantization)
|
||||
ops inserted at the boundaries of fused layers to record min-max range
|
||||
information. This generates a quantized inference workload that reproduces the
|
||||
quantization behavior that was used during training.
|
||||
float models with `FakeQuant*` ops inserted at the boundaries of fused layers
|
||||
to record min-max range information. This generates a quantized inference
|
||||
workload that reproduces the quantization behavior that was used during
|
||||
training.
|
||||
|
||||
The following command generates a quantized TensorFlow Lite FlatBuffer from a
|
||||
"quantized" TensorFlow GraphDef.
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
"""Support for launching graphs and executing operations.
|
||||
|
||||
See the [Client](https://tensorflow.org/api_guides/python/client) guide.
|
||||
See the [Client](https://www.tensorflow.org/guide/graphs) guide.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
@ -14,7 +14,7 @@
|
||||
# ==============================================================================
|
||||
"""Public Python API of TensorFlow Debugger (tfdbg).
|
||||
|
||||
See the [TFDBG](https://tensorflow.org/api_guides/python/tfdbg) guide.
|
||||
See the [TFDBG](https://www.tensorflow.org/guide/debugger) guide.
|
||||
|
||||
@@add_debug_tensor_watch
|
||||
@@watch_graph
|
||||
|
@ -13,10 +13,7 @@
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
|
||||
"""Python functions for directly manipulating TFRecord-formatted files.
|
||||
|
||||
See the [Python IO](https://tensorflow.org/api_guides/python/python_io) guide.
|
||||
"""
|
||||
"""Python functions for directly manipulating TFRecord-formatted files."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
|
@ -13,10 +13,7 @@
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
# Tests for this file live in python/kernel_tests/array_ops_test.py
|
||||
"""Support for manipulating tensors.
|
||||
|
||||
See the [Array Ops](https://tensorflow.org/api_guides/python/array_ops) guide.
|
||||
"""
|
||||
"""Support for manipulating tensors."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
|
@ -13,11 +13,7 @@
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
# pylint: disable=g-short-docstring-punctuation
|
||||
"""Asserts and Boolean Checks.
|
||||
|
||||
See the [Asserts and
|
||||
checks](https://tensorflow.org/api_guides/python/check_ops) guide.
|
||||
"""
|
||||
"""Asserts and Boolean Checks."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
|
@ -14,8 +14,7 @@
|
||||
# ==============================================================================
|
||||
"""Control Flow Operations.
|
||||
|
||||
See the [Control
|
||||
Flow](https://tensorflow.org/api_guides/python/control_flow_ops) guide.
|
||||
See the [autograph](https://www.tensorflow.org/guide/autographs) guide.
|
||||
"""
|
||||
# pylint: disable=g-bad-name
|
||||
from __future__ import absolute_import
|
||||
|
@ -13,11 +13,7 @@
|
||||
# limitations under the License.
|
||||
# =============================================================================
|
||||
|
||||
"""Functional operations.
|
||||
|
||||
See the [Higher Order
|
||||
Functions](https://tensorflow.org/api_guides/python/functional_ops) guide.
|
||||
"""
|
||||
"""Functional operations."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
|
@ -13,11 +13,7 @@
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
|
||||
"""Tensor Handle Operations.
|
||||
|
||||
See the [Session Ops](https://tensorflow.org/api_guides/python/session_ops)
|
||||
guide.
|
||||
"""
|
||||
"""Tensor Handle Operations."""
|
||||
|
||||
# pylint: disable=g-bad-name
|
||||
from __future__ import absolute_import
|
||||
|
@ -16,7 +16,7 @@
|
||||
# pylint: disable=g-short-docstring-punctuation
|
||||
"""Sparse Tensor Representation.
|
||||
|
||||
See the [Sparse Ops](https://tensorflow.org/api_guides/python/sparse_ops) guide.
|
||||
See also `tf.SparseTensor`.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
"""Variables.
|
||||
|
||||
See the [Variables](https://tensorflow.org/api_guides/python/state_ops) guide.
|
||||
See the [Variables](https://www.tensorflow.org/guide/variables) guide.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import
|
||||
|
@ -13,10 +13,7 @@
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
|
||||
"""Operations for working with string Tensors.
|
||||
|
||||
See the [Strings](https://tensorflow.org/api_guides/python/string_ops) guide.
|
||||
"""
|
||||
"""Operations for working with string Tensors."""
|
||||
|
||||
from __future__ import absolute_import
|
||||
from __future__ import division
|
||||
|
Loading…
Reference in New Issue
Block a user