Last active
January 5, 2018 02:43
-
-
Save dictav/41e5f5573a0c8bff1495d1be7a9cd890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go checkout fix/serialize | |
$ go run ./cmd/_dictool/main.go ipa -mecab mecab-ipadic/ -output out1 | |
$ go run ./cmd/_dictool/main.go ipa -mecab mecab-ipadic/ -output out2 | |
$ shasum out{1,2}/ipa.dic | |
79ccee038f2edc6544e3ee264419615c624c207d out1/ipa.dic | |
79ccee038f2edc6544e3ee264419615c624c207d out2/ipa.dic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go run main.go ipa -mecab ./mecab-ipadic/ -output ipa.dic1 -z=false | |
$ go run main.go ipa -mecab ./mecab-ipadic/ -output ipa.dic2 -z=false | |
$ shasum ipa.dic1/* | |
1b1831b6ac4af5930f936e88170e9b86a7e51c70 ipa.dic1/ipa.dic.000 | |
26d69993fd9b449e784d7b41d6a7facb81be41b1 ipa.dic1/ipa.dic.001 | |
2466c5de1dad7495633180e5ee8bf745a8d3ce69 ipa.dic1/ipa.dic.002 | |
3a0cf26d7120e95db338d4fb5392c63918e9b083 ipa.dic1/ipa.dic.003 | |
$ shasum ipa.dic2/* | |
1b1831b6ac4af5930f936e88170e9b86a7e51c70 ipa.dic2/ipa.dic.000 | |
26d69993fd9b449e784d7b41d6a7facb81be41b1 ipa.dic2/ipa.dic.001 | |
2466c5de1dad7495633180e5ee8bf745a8d3ce69 ipa.dic2/ipa.dic.002 | |
83714661436abdf877171b75a4d48c045e63182d ipa.dic2/ipa.dic.003 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ go run main.go ipa -mecab ./mecab-ipadic/ -output ipa.dic1 | |
$ go run main.go ipa -mecab ./mecab-ipadic/ -output ipa.dic2 | |
$ unzip ipa.dic1/ipa.dic -d ipa.dic1 | |
$ unzip ipa.dic2/ipa.dic -d ipa.dic2 | |
$ shasum ipa.dic1/* | |
f1b0663cc017d630a965b9a16634c071e9849f68 ipa.dic1/chardef.dic | |
806a511a9e00dff032a4d0ae57760672e0be7d07 ipa.dic1/connection.dic | |
c9f07b38fde95ade2eb980e30945f9102d345460 ipa.dic1/content.dic | |
2b50ee8a6266ca8cb0d99bac5a9830d7b063490c ipa.dic1/index.dic | |
dde3cbf54f7ac198a9d0e9e7693192f93aa359c2 ipa.dic1/ipa.dic | |
035614e68a5159c65f7e036d7ba26661231e1712 ipa.dic1/morph.dic | |
d665172f304e6645673ea44530ec2b1c8026c090 ipa.dic1/pos.dic | |
55f720d04d6846e0bb624546f3afe4275e92a9fc ipa.dic1/unk.dic | |
$ shasum ipa.dic2/* | |
f1b0663cc017d630a965b9a16634c071e9849f68 ipa.dic2/chardef.dic | |
806a511a9e00dff032a4d0ae57760672e0be7d07 ipa.dic2/connection.dic | |
c9f07b38fde95ade2eb980e30945f9102d345460 ipa.dic2/content.dic | |
4dee91a757409e5909f3346a0029ac1a88a3a47f ipa.dic2/index.dic | |
1157acf1ad43bb6e370505270f202dc87c5f4248 ipa.dic2/ipa.dic | |
035614e68a5159c65f7e036d7ba26661231e1712 ipa.dic2/morph.dic | |
d665172f304e6645673ea44530ec2b1c8026c090 ipa.dic2/pos.dic | |
cc3e4e3cd07c5b0987803c729acefa947d505ca4 ipa.dic2/unk.dic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment