What is model-file when we train CRF Mallet? java -cp "/home/hough/mallet/class:/home/hough/mallet/lib/mallet-deps.jar" cc.mallet.fst.SimpleTagger --train true --model-file nouncrf sample
Asked
Active
Viewed 257 times
1 Answers
1
Are you asking where to get it (1) or what's format it's in (2) ?
Answers are:
- According to documentation
--model-file
option specifies where file will be written to. So MALLET creates it. - It's Java object serialized to binary using standard Java serialization.

expert
- 29,290
- 30
- 110
- 214
-
1So we don't have to create it. OK. Thanks! – ahmed123 Feb 20 '16 at 20:55