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
In the readme it says that the "!" should be tags as a sent-final punct (".")
In fact on my side it's tagged as "!" so if I console.log I got ["!","!"] and not ["!","."].
["!","!"]
["!","."]
The text was updated successfully, but these errors were encountered:
I think the problem is caused by the lexicon in lexicon.js. It assigns ! to !:
lexicon.js
!
"!": [ "!" ],
If you change this to . it should work correctly.
.
Hugo
Sorry, something went wrong.
After looking in the code, I saw, but maybe the readme should be updated, right ?
I think the lexicon should be updated according to the README. The tags as defined in the README follow PENN Treebank tags.
No branches or pull requests
In the readme it says that the "!" should be tags as a sent-final punct (".")
In fact on my side it's tagged as "!" so if I console.log I got
["!","!"]
and not["!","."]
.The text was updated successfully, but these errors were encountered: