I have been using UD Pipe to train and tag data in the Hindi Language.
I run the tagger using
udpipe --tag model.output hi-ud-test.conllu
which works perfectly fine and displays the output in command line. How do I write this output in a file?
Simply use the command
udpipe --tag model.output hi-ud-test.conllu > output.txt
This will write your output in a txt file called "output" instead of displaying in the terminal