You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this issue is reproducible in igo-python 0.9.7 and newer versions.
the latest, 0.9.8, works fine on python 2.7, 3.4, 3.5, 3.6, pypy, pypy3.
0.9.6 works fine on python 3.3.
0.9.8 works fine on python 3.3 if use_mmap=False
expected result
>>> import igo; [x.feature for x in igo.tagger.Tagger('ipadic').parse('私の名前は中野です')]
['名詞,代名詞,一般,*,*,*,私,ワタシ,ワタシ', '助詞,連体化,*,*,*,*,の,ノ,ノ', '名詞,一般,*,*,*,*,名前,ナマエ,ナマエ', '助詞,係助詞,*,*,*,*,は,ハ,ワ', '名詞,固有名詞,地域,一般,*,*,中野,ナカノ,ナカノ', '助動詞,*,*,*,特殊・デス,基本形,です,デス,デス']
on python 3.3
>>> import igo; [x.feature for x in igo.tagger.Tagger('ipadic').parse('私の名前は中野です')]
['名詞,一般,*,*,*,*,*', '名詞,一般,*,*,*,*,*', '名詞,一般,*,*,*,*,*', '名詞,一般,*,*,*,*,*', '名詞,一般,*,*,*,*,*', '名詞,一般,*,*,*,*,*']
The text was updated successfully, but these errors were encountered:
this issue is reproducible in igo-python 0.9.7 and newer versions.
the latest, 0.9.8, works fine on python 2.7, 3.4, 3.5, 3.6, pypy, pypy3.
0.9.6 works fine on python 3.3.
0.9.8 works fine on python 3.3 if use_mmap=False
expected result
on python 3.3
The text was updated successfully, but these errors were encountered: