Fix typo in tf.clip_by_value documentation

PiperOrigin-RevId: 320032918
Change-Id: I24ab1e5d312283aa9bc481885b0b7750a622279a
This commit is contained in:
A. Unique TensorFlower 2020-07-07 12:07:22 -07:00 committed by TensorFlower Gardener
parent 9b0deab911
commit 2d51703439

View File

@ -89,7 +89,7 @@ def clip_by_value(t, clip_value_min, clip_value_max,
t: A `Tensor` or `IndexedSlices`.
clip_value_min: The minimum value to clip to. A scalar `Tensor` or one that
is broadcastable to the shape of `t`.
clip_value_max: The minimum value to clip to. A scalar `Tensor` or one that
clip_value_max: The maximum value to clip to. A scalar `Tensor` or one that
is broadcastable to the shape of `t`.
name: A name for the operation (optional).