AUTHORS.rst
CONTRIBUTING.rst
HISTORY.rst
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
docs/Makefile
docs/api.rst
docs/authors.rst
docs/conf.py
docs/contributing.rst
docs/history.rst
docs/index.rst
docs/installation.rst
docs/make.bat
docs/readme.rst
docs/usage.rst
tests/__init__.py
tests/test_underthesea.py
tests/chunking/__init__.py
tests/chunking/test_chunk.py
tests/chunking/samples/1.txt
tests/chunking/samples/2.txt
tests/chunking/samples/3.txt
tests/chunking/samples/4.txt
tests/chunking/samples/5.txt
tests/dictionary/__init__.py
tests/dictionary/test.py
tests/feature_engineering/__init__.py
tests/feature_engineering/test_lowercase.py
tests/feature_engineering/test_text.py
tests/feature_engineering/test_unicode.py
tests/pos_tag/__init__.py
tests/pos_tag/test_pos_tag.py
tests/pos_tag/samples/1.txt
tests/pos_tag/samples/2.txt
tests/pos_tag/samples/3.txt
tests/pos_tag/samples/4.txt
tests/pos_tag/samples/5.txt
tests/pos_tag/samples/6.txt
tests/test_corpus/__init__.py
tests/test_corpus/test_corpus.py
tests/test_corpus/test_plaintext.py
tests/test_corpus/test_vietdict.py
tests/test_corpus/test_ws.py
tests/test_corpus/sample_saved_ws_corpus/sample_1.txt
tests/test_corpus/sample_saved_ws_corpus/sample_2.txt
tests/test_corpus/sample_text_corpus/21455847.txt
tests/test_corpus/sample_text_corpus/21457801.txt
tests/test_corpus/sample_text_corpus/21459344.txt
tests/test_corpus/sample_text_corpus/21461263.txt
tests/test_corpus/sample_ws_corpus/sample_1.txt
tests/test_corpus/sample_ws_corpus/sample_2.txt
tests/word_sent/__init__.py
tests/word_sent/test_config.py
tests/word_sent/test_performance.py
tests/word_sent/test_performance_2.py
tests/word_sent/test_tokenize.py
tests/word_sent/test_word_sent.py
tests/word_sent/samples/4_documents/22343389.txt
tests/word_sent/samples/4_documents/22344407.txt
tests/word_sent/samples/4_documents/22345215.txt
tests/word_sent/samples/4_documents/22346351.txt
tests/word_sent/samples/accuracy/1.in
tests/word_sent/samples/accuracy/1.out
tests/word_sent/samples/accuracy/1.tmp
tests/word_sent/samples/accuracy/10.in
tests/word_sent/samples/accuracy/10.out
tests/word_sent/samples/accuracy/11.in
tests/word_sent/samples/accuracy/11.out
tests/word_sent/samples/accuracy/12.in
tests/word_sent/samples/accuracy/12.out
tests/word_sent/samples/accuracy/13.in
tests/word_sent/samples/accuracy/13.out
tests/word_sent/samples/accuracy/14.in
tests/word_sent/samples/accuracy/14.out
tests/word_sent/samples/accuracy/15.in
tests/word_sent/samples/accuracy/15.out
tests/word_sent/samples/accuracy/16.in
tests/word_sent/samples/accuracy/16.out
tests/word_sent/samples/accuracy/17.in
tests/word_sent/samples/accuracy/17.out
tests/word_sent/samples/accuracy/2.in
tests/word_sent/samples/accuracy/2.out
tests/word_sent/samples/accuracy/3.in
tests/word_sent/samples/accuracy/3.out
tests/word_sent/samples/accuracy/4.in
tests/word_sent/samples/accuracy/4.out
tests/word_sent/samples/accuracy/5.in
tests/word_sent/samples/accuracy/5.out
tests/word_sent/samples/accuracy/6.in
tests/word_sent/samples/accuracy/6.out
tests/word_sent/samples/accuracy/7.in
tests/word_sent/samples/accuracy/7.out
tests/word_sent/samples/accuracy/8.in
tests/word_sent/samples/accuracy/8.out
tests/word_sent/samples/accuracy/9.in
tests/word_sent/samples/accuracy/9.out
tests/word_sent/samples/sentences/448_tokens.txt
underthesea/__init__.py
underthesea/cli.py
underthesea/underthesea.py
underthesea.egg-info/PKG-INFO
underthesea.egg-info/SOURCES.txt
underthesea.egg-info/dependency_links.txt
underthesea.egg-info/entry_points.txt
underthesea.egg-info/not-zip-safe
underthesea.egg-info/requires.txt
underthesea.egg-info/top_level.txt
underthesea/chunking/__init__.py
underthesea/chunking/chunk.py
underthesea/chunking/chunking_crf_v1.model
underthesea/chunking/model.py
underthesea/chunking/transformer.py
underthesea/corpus/__init__.py
underthesea/corpus/corpus.py
underthesea/corpus/document.py
underthesea/corpus/plaintext.py
underthesea/corpus/ws.py
underthesea/corpus/data/Viet11K.txt
underthesea/corpus/data/Viet22K.txt
underthesea/corpus/data/Viet39K.txt
underthesea/corpus/data/Viet74K.txt
underthesea/corpus/data/word_seg_7800/test1.iob2.txt
underthesea/corpus/data/word_seg_7800/test2.iob2.txt
underthesea/corpus/data/word_seg_7800/test3.iob2.txt
underthesea/corpus/data/word_seg_7800/test4.iob2.txt
underthesea/corpus/data/word_seg_7800/test5.iob2.txt
underthesea/corpus/data/word_seg_7800/train1.iob2.txt
underthesea/corpus/data/word_seg_7800/train2.iob2.txt
underthesea/corpus/data/word_seg_7800/train3.iob2.txt
underthesea/corpus/data/word_seg_7800/train4.iob2.txt
underthesea/corpus/data/word_seg_7800/train5.iob2.txt
underthesea/corpus/readers/__init__.py
underthesea/corpus/readers/dictionary_loader.py
underthesea/dictionary/__init__.py
underthesea/dictionary/dictionary.data
underthesea/feature_engineering/__init__.py
underthesea/feature_engineering/feature.py
underthesea/feature_engineering/lowercase.py
underthesea/feature_engineering/text.py
underthesea/feature_engineering/unicode.py
underthesea/pos_tag/__init__.py
underthesea/pos_tag/model.py
underthesea/pos_tag/pos_tag.py
underthesea/pos_tag/postag_crf_v1.model
underthesea/pos_tag/transformer.py
underthesea/util/__init__.py
underthesea/util/file_io.py
underthesea/util/singleton.py
underthesea/word_sent/__init__.py
underthesea/word_sent/feature.py
underthesea/word_sent/model.py
underthesea/word_sent/tokenize.py
underthesea/word_sent/transformer.py
underthesea/word_sent/word_sent.py
underthesea/word_sent/wordsent_crf_v1.model