CRF Mallet model file

267 Views Asked by At

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

1

There are 1 best solutions below

1
On BEST ANSWER

Are you asking where to get it (1) or what's format it's in (2) ?

Answers are:

  1. According to documentation --model-file option specifies where file will be written to. So MALLET creates it.
  2. It's Java object serialized to binary using standard Java serialization.