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
What steps will reproduce the problem?
1. making user-dictionary.
$ /usr/local/libexec/mecab/mecab-dict-index -m model.def -d . -u user2.csv -f utf-8 -t utf-8 -a user.csv
model.def is not a binary model. reopen it as text mode...
dictionary.cpp(183) [cid.left_size() == matrix.left_size() && cid.right_size() == matrix.right_size()] Context ID files(./left-id.def or ./right-id.def may be broken: 1999 2894 2894 1999
What is the expected output? What do you see instead?
$ /usr/local/libexec/mecab/mecab-dict-index -m model.def -d . -u user2.csv -f utf-8 -t utf-8 -a user.csv
model.def is not a binary model. reopen it as text mode...
reading user.csv ...
done!
What version of the product are you using? On what operating system?
mecab-0.996.tar.gz, ubuntu 13/10
Please provide any additional information below.
it looks like bug. Perhaps it seems to be fixed like this.
dictionary.cpp:182, 355
[before]
------------------------------------------------------------
CHECK_DIE(cid.left_size() == matrix.left_size() &&
cid.right_size() == matrix.right_size())
------------------------------------------------------------
[after]
------------------------------------------------------------
CHECK_DIE(cid->left_size() == matrix.right_size() &&
cid->right_size() == matrix.left_size())
Original issue reported on code.google.com by [email protected] on 10 Mar 2014 at 10:39
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 10 Mar 2014 at 10:39The text was updated successfully, but these errors were encountered: