├── .gitignore ├── MANIFEST.in ├── README.txt ├── setup.py ├── simplenlp ├── __init__.py ├── ar │ └── __init__.py ├── de │ ├── __init__.py │ ├── stop.txt │ └── stopwords-de.txt ├── default │ └── __init__.py ├── en │ ├── __init__.py │ ├── autocorrect.txt │ ├── blacklist.txt │ ├── frequencies.txt │ ├── stop.txt │ └── swap4.txt ├── es │ ├── __init__.py │ ├── frequencies.txt │ ├── stop.txt │ └── stopwords-es.txt ├── euro.py ├── fi │ └── __init__.py ├── fr │ └── __init__.py ├── hu │ ├── __init__.py │ ├── stop.txt │ └── stopwords-hu.txt ├── it │ └── __init__.py ├── ja │ └── __init__.py ├── ja_cabocha │ ├── README.txt │ ├── __init__.py │ ├── cabocha_token.py │ ├── chunk.py │ ├── debug.py │ ├── parser.py │ ├── properties.py │ ├── system.py │ ├── tree.py │ ├── util.py │ ├── utterance.py │ └── word.py ├── ko │ └── __init__.py ├── lemmatize │ ├── dm.yaml │ ├── em.yaml │ ├── make_lemmadb.py │ ├── mblem.py │ └── setup │ │ ├── dm.ibase │ │ ├── dm.xml │ │ ├── em.ibase │ │ ├── em.xml │ │ ├── gm.ibase │ │ └── timbl_convert.py ├── mblem │ ├── __init__.py │ ├── em.xml │ ├── en.mblem.pickle │ ├── en.unlem.pickle │ ├── en_unlem │ │ ├── A.c.xml │ │ ├── A.s.xml │ │ ├── ADV.c.xml │ │ ├── ADV.s.xml │ │ ├── N.P.xml │ │ ├── N.Pr.xml │ │ ├── N.S.xml │ │ ├── V.a1S.xml │ │ ├── V.a1Sr.xml │ │ ├── V.a2S.xml │ │ ├── V.a2Sr.xml │ │ ├── V.a3S.xml │ │ ├── V.a3Sr.xml │ │ ├── V.aP.xml │ │ ├── V.aPr.xml │ │ ├── V.e1S.xml │ │ ├── V.e2S.xml │ │ ├── V.e2Sr.xml │ │ ├── V.e3S.xml │ │ ├── V.e3Sr.xml │ │ ├── V.eP.xml │ │ ├── V.i.xml │ │ ├── V.pa.xml │ │ ├── V.par.xml │ │ └── V.pe.xml │ ├── enable │ ├── timbl_convert.py │ ├── train_unlem.py │ └── trie.py ├── nl │ ├── __init__.py │ └── stop.txt ├── pt │ ├── __init__.py │ └── stop.txt ├── ru │ ├── __init__.py │ └── stop.txt ├── trie.py └── zh │ └── __init__.py └── test ├── cabocha ├── test_ja_unit_tests.py └── test_ja_unit_tests_data.py ├── test_nl_default.py ├── test_nl_euro.py ├── test_nl_ja.py └── test_preprocess.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/README.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/setup.py -------------------------------------------------------------------------------- /simplenlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/__init__.py -------------------------------------------------------------------------------- /simplenlp/ar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ar/__init__.py -------------------------------------------------------------------------------- /simplenlp/de/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/de/__init__.py -------------------------------------------------------------------------------- /simplenlp/de/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/de/stop.txt -------------------------------------------------------------------------------- /simplenlp/de/stopwords-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/de/stopwords-de.txt -------------------------------------------------------------------------------- /simplenlp/default/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/default/__init__.py -------------------------------------------------------------------------------- /simplenlp/en/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/__init__.py -------------------------------------------------------------------------------- /simplenlp/en/autocorrect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/autocorrect.txt -------------------------------------------------------------------------------- /simplenlp/en/blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/blacklist.txt -------------------------------------------------------------------------------- /simplenlp/en/frequencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/frequencies.txt -------------------------------------------------------------------------------- /simplenlp/en/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/stop.txt -------------------------------------------------------------------------------- /simplenlp/en/swap4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/en/swap4.txt -------------------------------------------------------------------------------- /simplenlp/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/es/__init__.py -------------------------------------------------------------------------------- /simplenlp/es/frequencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/es/frequencies.txt -------------------------------------------------------------------------------- /simplenlp/es/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/es/stop.txt -------------------------------------------------------------------------------- /simplenlp/es/stopwords-es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/es/stopwords-es.txt -------------------------------------------------------------------------------- /simplenlp/euro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/euro.py -------------------------------------------------------------------------------- /simplenlp/fi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/fi/__init__.py -------------------------------------------------------------------------------- /simplenlp/fr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/fr/__init__.py -------------------------------------------------------------------------------- /simplenlp/hu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/hu/__init__.py -------------------------------------------------------------------------------- /simplenlp/hu/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/hu/stop.txt -------------------------------------------------------------------------------- /simplenlp/hu/stopwords-hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/hu/stopwords-hu.txt -------------------------------------------------------------------------------- /simplenlp/it/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/it/__init__.py -------------------------------------------------------------------------------- /simplenlp/ja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja/__init__.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/README.txt -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/__init__.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/cabocha_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/cabocha_token.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/chunk.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/debug.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/parser.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/properties.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/system.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/tree.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/util.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/utterance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/utterance.py -------------------------------------------------------------------------------- /simplenlp/ja_cabocha/word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ja_cabocha/word.py -------------------------------------------------------------------------------- /simplenlp/ko/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ko/__init__.py -------------------------------------------------------------------------------- /simplenlp/lemmatize/dm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/dm.yaml -------------------------------------------------------------------------------- /simplenlp/lemmatize/em.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/em.yaml -------------------------------------------------------------------------------- /simplenlp/lemmatize/make_lemmadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/make_lemmadb.py -------------------------------------------------------------------------------- /simplenlp/lemmatize/mblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/mblem.py -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/dm.ibase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/dm.ibase -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/dm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/dm.xml -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/em.ibase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/em.ibase -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/em.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/em.xml -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/gm.ibase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/gm.ibase -------------------------------------------------------------------------------- /simplenlp/lemmatize/setup/timbl_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/lemmatize/setup/timbl_convert.py -------------------------------------------------------------------------------- /simplenlp/mblem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/__init__.py -------------------------------------------------------------------------------- /simplenlp/mblem/em.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/em.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en.mblem.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en.mblem.pickle -------------------------------------------------------------------------------- /simplenlp/mblem/en.unlem.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en.unlem.pickle -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/A.c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/A.c.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/A.s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/A.s.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/ADV.c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/ADV.c.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/ADV.s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/ADV.s.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/N.P.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/N.P.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/N.Pr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/N.Pr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/N.S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/N.S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a1S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a1S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a1Sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a1Sr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a2S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a2S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a2Sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a2Sr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a3S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a3S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.a3Sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.a3Sr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.aP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.aP.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.aPr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.aPr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.e1S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.e1S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.e2S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.e2S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.e2Sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.e2Sr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.e3S.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.e3S.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.e3Sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.e3Sr.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.eP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.eP.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.i.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.i.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.pa.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.par.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.par.xml -------------------------------------------------------------------------------- /simplenlp/mblem/en_unlem/V.pe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/en_unlem/V.pe.xml -------------------------------------------------------------------------------- /simplenlp/mblem/enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/enable -------------------------------------------------------------------------------- /simplenlp/mblem/timbl_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/timbl_convert.py -------------------------------------------------------------------------------- /simplenlp/mblem/train_unlem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/train_unlem.py -------------------------------------------------------------------------------- /simplenlp/mblem/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/mblem/trie.py -------------------------------------------------------------------------------- /simplenlp/nl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/nl/__init__.py -------------------------------------------------------------------------------- /simplenlp/nl/stop.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simplenlp/pt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/pt/__init__.py -------------------------------------------------------------------------------- /simplenlp/pt/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/pt/stop.txt -------------------------------------------------------------------------------- /simplenlp/ru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ru/__init__.py -------------------------------------------------------------------------------- /simplenlp/ru/stop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/ru/stop.txt -------------------------------------------------------------------------------- /simplenlp/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/trie.py -------------------------------------------------------------------------------- /simplenlp/zh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/simplenlp/zh/__init__.py -------------------------------------------------------------------------------- /test/cabocha/test_ja_unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/cabocha/test_ja_unit_tests.py -------------------------------------------------------------------------------- /test/cabocha/test_ja_unit_tests_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/cabocha/test_ja_unit_tests_data.py -------------------------------------------------------------------------------- /test/test_nl_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/test_nl_default.py -------------------------------------------------------------------------------- /test/test_nl_euro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/test_nl_euro.py -------------------------------------------------------------------------------- /test/test_nl_ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/test_nl_ja.py -------------------------------------------------------------------------------- /test/test_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsense/simplenlp/HEAD/test/test_preprocess.py --------------------------------------------------------------------------------