(numpy) Equivalent to np.isfinite. Example: x = tf.constant([5.0, 4.8, 6.8, np.inf, np.nan]) tf.math.is_finite(x) ==> [True, True, True, ...
確定! 回上一頁