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.
Apache License 2.0
1.89k stars 446 forks source link

Can I just use the CRF layer? #169

Closed JxuHenry closed 3 years ago

JxuHenry commented 3 years ago

I want just use the CRF layer, because of the lack of data.

jiesutd commented 3 years ago

You can consider use the statistical CRF models using CRF++ https://taku910.github.io/crfpp/

If you want to use neural networks, you can set the network with simple feed-forward (FF) structures.