I am using python2.7, nltk 3.2.1 and python-crfsuite 0.8.4. I follow this page: http://www.nltk.org/api/nltk.tag.html?highlight=stanford#nltk.tag.stanford.NERTagger for the nltk.tag.crf module.
For starters, I just ran this
from nltk.tag import CRFTagger
ct = CRFTagger()
train_data = [[('dfd','dfd')]]
ct.train(train_data,"abc")
I tried it too
f = open("abc","wb")
ct.train(train_data,f)
but I get the following error:
File "C:\Python27\lib\site-packages\nltk\tag\crf.py", line 129, in <genexpr>
if all (unicodedata.category(x) in punc_cat for x in token):
TypeError: must be unicode, not str
source
share