You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tf.argmax(actual_y,1) returns the index with the largest value across axis of a tensor.
How can this handle cases where there are more than one correct answers?
e.g. test case: i_aunt(gina,Y) +i_aunt(gina,alfonso) +i_aunt(gina,sophia)
The text was updated successfully, but these errors were encountered:
correct_predictions = tf.equal(tf.argmax(actual_y,1),tf.argmax(predicted_y,1))
tf.argmax(actual_y,1) returns the index with the largest value across axis of a tensor.
How can this handle cases where there are more than one correct answers?
e.g. test case:
i_aunt(gina,Y) +i_aunt(gina,alfonso) +i_aunt(gina,sophia)
The text was updated successfully, but these errors were encountered: