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
But later you iterate over the size of the test set:
params.eval_size=params.test_size
If the test set is larger than the dev set, this leads to an OutOfRangeError. If the test set is smaller than the dev set, the iteration stops too early.
Thanks for sharing the code!
The text was updated successfully, but these errors were encountered:
There is a little issue in
cs230-code-examples/tensorflow/nlp/evaluate.py
: You use the dev set for evaluation:But later you iterate over the size of the test set:
If the test set is larger than the dev set, this leads to an OutOfRangeError. If the test set is smaller than the dev set, the iteration stops too early.
Thanks for sharing the code!
The text was updated successfully, but these errors were encountered: