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
fromfugashiimportTaggertagger=Tagger()
xx=tagger("日本語")
print(xx[0].char_type) # => 2tagger("にほんご") # note this is not assigned anywhereprint(xx[0].char_type) # => 6, this is wrong
This probably affects other members of cnode, so they'll have to be eagerly copied. This may have performance impact, though we'll have to put up with it.
There could be an "unsafe mode" that returns nodes that could be invalidated, but are faster because they don't trigger allocations. However I'm not sure there's much demand for more speed.
The text was updated successfully, but these errors were encountered:
See polm/cutlet#59 for details. Minimal repro:
This probably affects other members of
cnode
, so they'll have to be eagerly copied. This may have performance impact, though we'll have to put up with it.There could be an "unsafe mode" that returns nodes that could be invalidated, but are faster because they don't trigger allocations. However I'm not sure there's much demand for more speed.
The text was updated successfully, but these errors were encountered: