What is an easy way to classify a word?
1–7 of 7 posts
Re: What is an easy way to classify a word?
#2You would take a corpus of documents and manually "tag" them with the entities you're looking for and designate that as your training corpus. You would then run that through a machine learning algorithm (such as https://opennlp.apache.org/), and then use the resulting model to process text and identify the entities it was trained on.
Re: What is an easy way to classify a word?
#3Re: What is an easy way to classify a word?
#4Re: What is an easy way to classify a word?
#5I think the technical term is "tagging". Check out the Natural Language Toolkit. http://www.nltk.org/
Re: What is an easy way to classify a word?
#6I'm not sure if this is what you're looking for, but most often classification/entity extraction is done by using statistical models/machine learning. You would take a corpus of documents and manually "tag" them with the entities you're looking for and designate that as your training corpus. You would then run that through a machine learning algorithm (such as https://opennlp.apache.org/ ), and then use the resulting…