I have several text files that need to be faked, POS and NER. I use C & C tags and run their tutorial, but I wonder if there is a way to tag multiple files, and not one by one.
I am currently signing files:
bin/tokkie --input working/tutorial/example.txt--quotes delete --output working/tutorial/example.tok
as follows, and then Part of the speech tags:
bin/pos --input working/tutorial/example.tok --model models/pos --output working/tutorial/example.pos
and finally, Named Entity Recognition:
bin/ner
I'm not sure how I would like to create a loop for this and keep the file name the same as the input, but with the extension representing its tagging. I was thinking of a bash script, or possibly Perl, to open a directory, but I'm not sure how to enter C & C commands to understand the script.
, , !