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
Looks like patterns currently prevent verbs? individual_pattern = { "lemma": {"regex": r"(?i)" + word}, "POS": {"NOT_IN": ["VERB"]}, "DEP": {"NOT_IN": ["nsubjpass"]}, }
The text was updated successfully, but these errors were encountered:
Thank you for the feedback. I'm taking a look now.
Sorry, something went wrong.
resolved issue #11 by adding more excplicit options to exclude POS an…
a03dddc
…d DEPS from matching. Also, added n-gram token matching. Embedding for ¨new_york¨ would be matched as a single entry.
@Wes4329 this can now be done via a variable during initialization exclude_pos, which determines what POS ought to be excluded from the matching.
exclude_pos
resolved #11 by removing obsolete deepcopies
ad741d1
davidberenstein1957
No branches or pull requests
Looks like patterns currently prevent verbs?
individual_pattern = {
"lemma": {"regex": r"(?i)" + word},
"POS": {"NOT_IN": ["VERB"]},
"DEP": {"NOT_IN": ["nsubjpass"]},
}
The text was updated successfully, but these errors were encountered: