CRFSharp
CRFSharp copied to clipboard
CRFSharp is Conditional Random Fields implemented by .NET(C#), a machine learning algorithm for learning from labeled sequences of examples.
Hello, kindly help in solving the following problem i trained CRFsharp for POS task successfully but during decoding i got the below error, i will be very thankful if you...
``` err,20/03/2018 11:47:50 format error: U07:%x[-1,1] err,20/03/2018 11:47:50 format error: U08:%x[0,1] err,20/03/2018 11:47:50 format error: U09:%x[1,1] ``` example of data `2013. DATE` template ``` # Unigram U01:%x[-1,0] U02:%x[0,0] U03:%x[1,0] U07:%x[-1,1]...
Hi, I am trying to do some transfer-learning framework with CRF. I would like to use the "retrain" feature but CRFSharp requires the pretrained model to have all tags in...
Hi there, Thanks for sharing a great project. Not sure how much this repository is active, but I have a question. I am running precompiled version of CRFSharp v1.2.0.0 on...
Hi @zhongkaifu, Sometimes we know the possible tags to choose from for a single token. E.g. consider POS tagging: if we have a dictionary that maps terms to all possible...
1. Trainfile size is depended on your computer memory. More large memory can process more large corpus size. And, if your log show “Open and check training corpus and templates...“...