You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which says get all the noun phrases that have leaf nodes under them (i.e. they are not made up of other noun or verb phrases)
Need to remove any non-nouns in noun phrase.
NLP Approach
Glossary terms should be handled as named entities. Thus they need to be added to the Gazetter. This could be accomplished by the use of the RegexNER annotator.
Each term will have an entry in a mapping file, containing a regex like this
( [{pos:/NN/;word:/style(s)?/}] )
Which will map to a GLOSSARY_ENTRY tag, whose normalization is the term itself. Conversion to GitHub linking conventions can be done downstream.
The text was updated successfully, but these errors were encountered:
Follow the following
tregex
Which says get all the noun phrases that have leaf nodes under them (i.e. they are not made up of other noun or verb phrases)
Need to remove any non-nouns in noun phrase.
NLP Approach
Glossary terms should be handled as
named entities
. Thus they need to be added to the Gazetter. This could be accomplished by the use of theRegexNER
annotator.Each term will have an entry in a mapping file, containing a regex like this
Which will map to a
GLOSSARY_ENTRY
tag, whose normalization is the term itself. Conversion to GitHub linking conventions can be done downstream.The text was updated successfully, but these errors were encountered: