AUTHORS.rst
CONTRIBUTING.rst
HISTORY.rst
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
docs/Makefile
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/.DS_Store
tests/__init__.py
tests/conftest.py
tests/test_tokenizer_tools.py
tests/conll/1.txt
tests/conll/2.txt
tests/conll/3.txt
tests/conll/4.txt
tests/conll/5.txt
tests/conll/6.txt
tests/conll/__init__.py
tests/conll/test_entity_vocabulary.py
tests/conll/test_iterator_reader.py
tests/conll/test_read_conll.py
tests/conll/test_tag_collector.py
tests/conll/test_entity_vocabulary/1.txt
tests/conll/test_iterator_reader/1.txt
tests/conll/test_iterator_reader/2.txt
tests/conll/test_read_conll/data.conll
tests/conllz/.DS_Store
tests/conllz/__init__.py
tests/conllz/corpus.txt
tests/conllz/corpus1.txt
tests/conllz/corpus3.txt
tests/conllz/corpus4.txt
tests/conllz/jsondata.txt
tests/conllz/tag_collector_data
tests/conllz/test_entity_vocabulary.py
tests/conllz/test_iterator_reader.py
tests/conllz/test_reader.py
tests/conllz/test_sentence.py
tests/conllz/test_tag_collector.py
tests/conllz/test_writer_conllz.py
tests/conllz/test_data/test.conllz
tests/conllz/test_entity_vocabulary/corpus.txt
tests/conllz/test_iterator_reader/corpus.txt
tests/conllz/test_iterator_reader/corpus1.txt
tests/conllz/test_tag_collector/corpus.txt
tests/conllz/test_tag_collector/corpus1.txt
tests/conllz/test_tag_collector/corpus3.txt
tests/conllz/test_tag_collector/corpus4.txt
tests/conllz/test_tag_collector/jsondata.txt
tests/converter/__init__.py
tests/converter/test_conllx_to_rasa.py
tests/converter/test_conllz_to_offset.py
tests/converter/test_offset_to_sentence.py
tests/converter/test_sentence_to_offset.py
tests/converter/test_conllx_to_rasa/1.txt
tests/converter/test_conllx_to_rasa/2.txt
tests/evaluator/test_offset_evaluator.py
tests/evaluator/test_tag_level_evaluator.py
tests/evaluator/token/test_base_evaluator.py
tests/evaluator/token/test_tag_level.py
tests/evaluator/token/test_token_level.py
tests/format_converter/test_corpus_to_rasa.py
tests/format_converter/test_corpus_to_rasa/output.conllx
tests/others/test_cli.py
tests/others/test_evaluate_by_files.py
tests/others/test_hooks.py
tests/others/test_metrics.py
tests/others/test_split_data.py
tests/others/test_tokenizer_tools.py
tests/tagset/.DS_Store
tests/tagset/__init__.py
tests/tagset/test_BMESEncoderDecoder.py
tests/tagset/test_BMESSequenceEncoderDecoder.py
tests/tagset/NER/test_biluo.py
tests/tagset/NER/test_iob.py
tests/tagset/converter/test_offset_to_biluo.py
tests/tagset/offset/.DS_Store
tests/tagset/offset/__init__.py
tests/tagset/offset/test_corpus.py
tests/tagset/offset/test_corpus_diff.py
tests/tagset/offset/test_corpus_statistics.py
tests/tagset/offset/test_document.py
tests/tagset/offset/test_document_compare_ways.py
tests/tagset/offset/test_plottable_counter.py
tests/tagset/offset/test_sequence.py
tests/tagset/offset/test_span.py
tests/tagset/offset/test_span_set.py
tests/tagset/offset/analysis/.DS_Store
tests/tagset/offset/analysis/test_corpus_pattern.py
tests/tagset/offset/analysis/test_document_pattern.py
tests/tagset/offset/analysis/test_express_pattern.py
tests/tagset/offset/analysis/test_read_markdown.py
tests/tagset/offset/analysis/test_corpus_pattern/corpus.conllx
tests/tagset/offset/analysis/test_corpus_pattern/pattern.md
tests/tagset/offset/analysis/test_express_pattern/corpus.conllx
tests/tagset/offset/analysis/test_read_markdown/data.md
tests/tagset/offset/test_corpus/corpus_one.conllx
tests/tagset/offset/test_corpus/corpus_two.conllx
tests/tagset/offset/test_corpus/duplicate.conllx
tests/tagset/offset/test_corpus/other.conllx
tests/tagset/offset/test_corpus/output.conllx
tests/tagset/offset/test_corpus/second_other.conllx
tests/tagset/offset/test_corpus/self.conllx
tests/tagset/offset/test_corpus_diff/corpus_one.conllx
tests/tagset/offset/test_corpus_diff/corpus_two.conllx
tests/tagset/offset/test_corpus_statistics/data.conllx
tests/tagset/offset/test_document/corpus.conllx
tests/transform/test_conllz_to_conll.py
tests/transform/test_plain_token_to_conll.py
tests/utils/test_batch_iterator.py
tests/utils/test_deprecated_api.py
tests/utils/test_deprecated_support.py
tokenizer_tools/__init__.py
tokenizer_tools/cli.py
tokenizer_tools/evaluate_by_files.py
tokenizer_tools/hooks.py
tokenizer_tools/metrics.py
tokenizer_tools/split_data.py
tokenizer_tools/tokenizer_tools.py
tokenizer_tools.egg-info/PKG-INFO
tokenizer_tools.egg-info/SOURCES.txt
tokenizer_tools.egg-info/dependency_links.txt
tokenizer_tools.egg-info/entry_points.txt
tokenizer_tools.egg-info/not-zip-safe
tokenizer_tools.egg-info/requires.txt
tokenizer_tools.egg-info/top_level.txt
tokenizer_tools/conll/__init__.py
tokenizer_tools/conll/entity_vocabulary.py
tokenizer_tools/conll/iterator_reader.py
tokenizer_tools/conll/reader.py
tokenizer_tools/conll/tag_collector.py
tokenizer_tools/conll/writer.py
tokenizer_tools/conllz/__init__.py
tokenizer_tools/conllz/entity_vocabulary.py
tokenizer_tools/conllz/iterator_reader.py
tokenizer_tools/conllz/reader.py
tokenizer_tools/conllz/sentence.py
tokenizer_tools/conllz/tag_collector.py
tokenizer_tools/conllz/writer.py
tokenizer_tools/converter/__init__.py
tokenizer_tools/converter/conllx_to_rasa.py
tokenizer_tools/converter/conllz_to_offset.py
tokenizer_tools/converter/offset_to_sentence.py
tokenizer_tools/converter/sentence_to_offset.py
tokenizer_tools/evaluator/__init__.py
tokenizer_tools/evaluator/offset_evaluator.py
tokenizer_tools/evaluator/tag_level_evaluator.py
tokenizer_tools/evaluator/token/__init__.py
tokenizer_tools/evaluator/token/base_evaluator.py
tokenizer_tools/evaluator/token/tag_level.py
tokenizer_tools/evaluator/token/token_level.py
tokenizer_tools/format_converter/__init__.py
tokenizer_tools/format_converter/corpus_to_rasa_json.py
tokenizer_tools/tagset/BMES.py
tokenizer_tools/tagset/__init__.py
tokenizer_tools/tagset/exceptions.py
tokenizer_tools/tagset/NER/BILUO.py
tokenizer_tools/tagset/NER/IOB.py
tokenizer_tools/tagset/NER/__init__.py
tokenizer_tools/tagset/NER/base_tagset.py
tokenizer_tools/tagset/converter/__init__.py
tokenizer_tools/tagset/converter/offset_to_biluo.py
tokenizer_tools/tagset/offset/__init__.py
tokenizer_tools/tagset/offset/corpus.py
tokenizer_tools/tagset/offset/corpus_diff.py
tokenizer_tools/tagset/offset/corpus_metric.py
tokenizer_tools/tagset/offset/corpus_set.py
tokenizer_tools/tagset/offset/corpus_statistics.py
tokenizer_tools/tagset/offset/document.py
tokenizer_tools/tagset/offset/document_compare_ways.py
tokenizer_tools/tagset/offset/exceptions.py
tokenizer_tools/tagset/offset/plottable_counter.py
tokenizer_tools/tagset/offset/sequence.py
tokenizer_tools/tagset/offset/span.py
tokenizer_tools/tagset/offset/span_set.py
tokenizer_tools/tagset/offset/analysis/__init__.py
tokenizer_tools/tagset/offset/analysis/corpus_pattern.py
tokenizer_tools/tagset/offset/analysis/document_pattern.py
tokenizer_tools/tagset/offset/analysis/entity_placeholder.py
tokenizer_tools/tagset/offset/analysis/express_pattern.py
tokenizer_tools/tagset/offset/analysis/read_markdown.py
tokenizer_tools/transform/__init__.py
tokenizer_tools/transform/conllz_to_conll.py
tokenizer_tools/transform/plain_token_to_conll.py
tokenizer_tools/utils/__init__.py
tokenizer_tools/utils/batch_iterator.py
tokenizer_tools/utils/deprecated_api.py
tokenizer_tools/utils/deprecated_support.py