python-crfsuite
python-crfsuite copied to clipboard
A python binding for crfsuite
anyone can assist me what is the mean of these features? And how we can customize it or add more features features = { 'bias': 1.0, 'word.lower()': word.lower(), 'word[-3:]': word[-3:],...
The Cython-generated `pycrfsuite/_pycrfsuite.cpp` file includes ``` #include "../crfsuite/include/crfsuite.h" #include "../crfsuite/include/crfsuite_api.hpp" ``` which leads to compilation failure: `pycrfsuite/_pycrfsuite.cpp:586:10: fatal error: ../crfsuite/include/crfsuite.h: No such file or directory` How can I change this...
Original CRFSuite has optimization flags to use SSE/SSE2 intrinsics to speed up numerical computation. Is this enabled in "python-crfsuite"? Does it make sense to build this package locally and install...
I have trained a german CRF. I looked at the feature and weights to analyse why and why not the entity is recognised. E.g. for this sentences. There it recognises...
Hey, I want to extract the influence of each features on each word to be an entity. I tried to find out how the marginal probability is calculated for each...
Import Error
--- ImportError Traceback (most recent call last) in () 9 import sklearn 10 ---> 11 import pycrfsuite 12 13 /usr/local/lib/python2.7/dist-packages/pycrfsuite/**init**.py in () 1 from **future** import absolute_import ----> 2 from...
Hi, The documentation states that "By using this class it is possible to save some time if the same input sequence is passed to trainers/taggers more than once"; however I...
I read the source code. However, i am not good at C++. Do i have to extract features just like you do? Do you translate all the features including the...