how to write results of CRF++ tool in a file

204 Views Asked by At

I am using CRF++. The following command is used for testing:-

crf_test -m model_file test_files

There is no option to write results on file. While we need results on separate file.

1

There are 1 best solutions below

0
Agaz Wani On BEST ANSWER

We can use

crf_test -m model_file test_files>filename. Hope this is helpful.