We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deeppavlov fails to tag the following sentence properly.
Ed uno in italiano da Roccacanuccia nella pianura pontina
The current output tags are as follows:
[ [ "Roccacannuccia", "nella", "pianura", "pontina" ], [ "LOC", "LOC", "LOC", "LOC", ] ]
However, this is wrong as "Roccacannuccia" is a Geo Political Entity (GPE). The expected output tags should be:
[ [ "Roccacannuccia", "nella", "pianura", "pontina" ], [ "GPE", "O", "LOC", "LOC", ] ]
Retagging ngrams of capitalized words seems to solve the issue. However, we need to limit the number of Deeppavlov API calls to keep the process fast.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Deeppavlov fails to tag the following sentence properly.
Ed uno in italiano da Roccacanuccia nella pianura pontina
The current output tags are as follows:
However, this is wrong as "Roccacannuccia" is a Geo Political Entity (GPE).
The expected output tags should be:
Solution
Retagging ngrams of capitalized words seems to solve the issue. However, we need to limit the number of Deeppavlov API calls
to keep the process fast.
The text was updated successfully, but these errors were encountered: