In the examples above, the first three files are OK, while the last one contains four errors. And answer_key2.txt contains the true labels for the training dataset.
So the first param of scorer.pl should be network's predictions and the second param should be test_keys.txt. But in your log files I found this line
!!!WARNING!!! The proposed file contains 1 label(s) of type 'Entity-Destination(e2,e1)', which is NOT present in the key file.
It's seemed to be that you passed test_keys.txt as the first param and network's predictions as the second param.
According scorer.pl, they said
So the first param of scorer.pl should be network's predictions and the second param should be
test_keys.txt
. But in your log files I found this lineIt's seemed to be that you passed
test_keys.txt
as the first param and network's predictions as the second param.