Search code examples
file-writingcrf++

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


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.


Solution

  • We can use

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