remove array_ops.where deprecation message.

PiperOrigin-RevId: 271168043
This commit is contained in:
Zhenyu Tan 2019-09-25 11:30:35 -07:00 committed by TensorFlower Gardener
parent 8b287e23fb
commit b581d28aca

View File

@ -3829,10 +3829,6 @@ def squeeze_v2(input, axis=None, name=None):
@tf_export(v1=["where"])
@deprecation.deprecated(
date=None,
instructions="Use tf.where in 2.0, "
"which has the same broadcast rule as np.where")
@dispatch.add_dispatch_support
def where(condition, x=None, y=None, name=None):
"""Return the elements, either from `x` or `y`, depending on the `condition`.