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
There seems to be bugs in line 119 - 122, test.py.
if the number of sentences > num_input_sentences, the length of the list "split_src_txt" will be larger than 1, while the length of "annotations" is always 1. Therefore, the For loop (from lines 119 to 181) will only be executed once, regardless of the size of "split_src_txt".
That is to say, it seems that some queries were not evaluated?
The text was updated successfully, but these errors were encountered:
There seems to be bugs in line 119 - 122, test.py.
if the number of sentences > num_input_sentences, the length of the list "split_src_txt" will be larger than 1, while the length of "annotations" is always 1. Therefore, the For loop (from lines 119 to 181) will only be executed once, regardless of the size of "split_src_txt".
That is to say, it seems that some queries were not evaluated?
The text was updated successfully, but these errors were encountered: