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
This works:
p -lang=Ace "John asks Mary and asks Mary ."
This does not work:
p -lang=Ace "John asks Mary and asks Mary and asks Mary ."
The exhaustive test did not find this problem because the AceWiki Codeco testset contains sentences of max length 8 tokens.
$ cat sentences.txt | sed 's/ *$//' | sed "s/ /|/g" | sed "s/[^|]//g" | sort | uniq -c | sort -nr 15254 ||||||| 3158 |||||| 740 ||||| 223 |||| 46 ||| 1 ||
The text was updated successfully, but these errors were encountered:
Correction: more than 2 arguments are supported but one needs to use a comma as a separator for all but the last element, e.g. this works:
p -lang=Ace "John asks Mary , asks Mary and asks Mary ."
Sorry, something went wrong.
No branches or pull requests
This works:
This does not work:
The exhaustive test did not find this problem because the AceWiki Codeco testset contains sentences of max length 8 tokens.
The text was updated successfully, but these errors were encountered: