-
Notifications
You must be signed in to change notification settings - Fork 30
Developing NLP Components
jdchoi77 edited this page Dec 13, 2014
·
3 revisions
- Create a package for your task (e.g.,
pos,dep). - Create a state class (e.g.,
POSState,DEPState). - Create a feature extractor class under the package.
edu.emory.clir.clearnlp.component;
The State class extends AbstractState and specifies the current processing state. For part-of-speech tagging,
Check out out our default feature extractor, CommonFeatureExtractor, which provides a wide range of features needed for most tasks. If you need more features not defined in CommonFeatureExtractor,
