jiesutd / NCRFpp

NCRF++, a Neural Sequence Labeling Toolkit. Easy use to any sequence labeling tasks (e.g. NER, POS, Segmentation). It includes character LSTM/CNN, word LSTM/CNN and softmax/CRF components.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

about pos tag

mingroad opened this issue · comments

hi, best wishes to you!
i have a question about pos labeling. now you give a tag format(BIO, BMES,BIOES), but for ner,chunking etc on. so for pos, what is that? it seems no support. if it support, can you give a sample? data format samples? thanks.

You can just use the original pos tags.

The only difference is to set seg=False in the config file.

Details are here: https://github.com/jiesutd/NCRFpp/blob/master/readme/Configuration.md

谢谢,在确认一疑问,关于结果评价实现metric.py,看到是针对BIO, BMES,BIOES的,关于pos这类原始标签类别,是否支持?看到您文章你有做这方面的结果,还是需要另实现?

不需要自己实现,会自动计算模型准确度accuracy的。