我有多个需要标记的文本文件,POS 和 NER。我正在使用C&C标记器并运行了他们的教程,但我想知道是否有一种方法可以标记多个文件而不是一个一个地标记。
目前我正在标记文件:
bin/tokkie --input working/tutorial/example.txt--quotes delete --output working/tutorial/example.tok
如下,然后是词性标记:
bin/pos --input working/tutorial/example.tok --model models/pos --output working/tutorial/example.pos
最后是命名实体识别:
bin/ner --input working/tutorial/example.pos --model models/ner --output working/tutorial/example.ner
我不确定如何创建一个循环来执行此操作并保持文件名与输入相同,但扩展名表示它具有的标记。我正在考虑使用 bash 脚本或 Perl 来打开目录,但我不确定如何输入 C&C 命令以使脚本能够理解。
目前我正在手动操作,至少可以说非常耗时!