Nathan Monette

Results 1 issues of Nathan Monette

Hello. in function is_label_valid (line 76 of utils.py), the following code is given: ```` def is_label_valid(labels): """Returns a boolean `Tensor` for label validity.""" labels = tf.convert_to_tensor(value=labels) return tf.greater_equal(labels, 0.) ````...