Commit 769d2ada authored by lluis's avatar lluis

Changes SVT recognition evaluation to be Case Insensitive (according to the…

Changes SVT recognition evaluation to be Case Insensitive (according to the standard evaluation protocol). This makes the benchmark obtained mean-f1 score increase from 0.23 to 0.27
parent 6e4d6bca
......@@ -244,6 +244,8 @@ int main(int argc, char *argv[])
continue;
}
std::transform(words[j].begin(), words[j].end(), words[j].begin(), ::toupper);
if (find(example->lex.begin(), example->lex.end(), words[j]) == example->lex.end())
{
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment