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
parser.norm_parse(text) returns None for some sentences, hence parser.parse(text) crashes because is uses norm_parse internally.
parser.norm_parse(text)
None
parser.parse(text)
norm_parse
The string "this is bad" falls into that category and cannot be parsed with norm_parse, but "this is very bad" works well.
"this is bad"
"this is very bad"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
parser.norm_parse(text)
returnsNone
for some sentences, henceparser.parse(text)
crashes because is usesnorm_parse
internally.The string
"this is bad"
falls into that category and cannot be parsed withnorm_parse
, but"this is very bad"
works well.The text was updated successfully, but these errors were encountered: