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
I am not sure whether this is correct or not, but during your calculation for Turkey model, you are not using tf.squeeze on y_test causing the results of the Turkey model results value going too far. The following is your code
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am not sure whether this is correct or not, but during your calculation for Turkey model, you are not using
tf.squeeze
ony_test
causing the results of the Turkey model results value going too far. The following is your codeResult:
while turkey_preds has shape [556], and y_test has shape [556, 1].
My result after using
tf.squeeze(y_test)
would be(although I knew it still a bs!)
Correct me if I'm wrong, and I will delete the discussion.
Beta Was this translation helpful? Give feedback.
All reactions