-
Notifications
You must be signed in to change notification settings - Fork 14
Implement your own applications
nvcuong edited this page Aug 28, 2012
·
3 revisions
- Create a dataset object from your training data.
- Create a label map object from your training data.
- Create an array list of feature types.
- Create a parameter object from your configuration file and your label map.
- Create a feature generator object from your features types and the parameters.
- Initialize your feature generator using your training data.
- Create a high-order semi-CRF model from your feature generator.
- Call the train(...) method of the high-order semi-CRF model.
- Read the label map, feature generator, and the high-order semi-CRF model from files.
- Create a dataset object from your testing data.
- Call the runViterbi(...) method of the high-order semi-CRF model.
- Score the results by using the Scorer class.