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/modules.rst
docs/readme.rst
docs/tokenizer_tools.conll.rst
docs/tokenizer_tools.conllz.rst
docs/tokenizer_tools.converter.rst
docs/tokenizer_tools.evaluator.rst
docs/tokenizer_tools.evaluator.token.rst
docs/tokenizer_tools.format_converter.rst
docs/tokenizer_tools.rst
docs/tokenizer_tools.tagset.NER.rst
docs/tokenizer_tools.tagset.converter.rst
docs/tokenizer_tools.tagset.offset.analysis.rst
docs/tokenizer_tools.tagset.offset.rst
docs/tokenizer_tools.tagset.rst
docs/tokenizer_tools.transform.rst
docs/tokenizer_tools.utils.rst
docs/usage.rst
docs/_build/html/_static/file.png
docs/_build/html/_static/minus.png
docs/_build/html/_static/plus.png
tests/__init__.py
tests/conftest.py
tests/test_tokenizer_tools.py
tests/conllz/__init__.py
tests/conllz/test_iterator_reader.py
tests/conllz/test_reader.py
tests/conllz/test_sentence.py
tests/conllz/test_writer.py
tests/conllz/test_iterator_reader/corpus.txt
tests/conllz/test_iterator_reader/corpus1.txt
tests/conllz/test_reader/corpus.conllx
tests/converter/__init__.py
tests/converter/test_conllx_to_offset.py
tests/converter/test_conllx_to_rasa.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_hooks.py
tests/others/test_split_data.py
tests/others/test_tokenizer_tools.py
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/__init__.py
tests/tagset/offset/test_corpus.py
tests/tagset/offset/test_corpus_diff.py
tests/tagset/offset/test_corpus_metric.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_seqeval.py
tests/tagset/offset/test_sequence.py
tests/tagset/offset/test_span.py
tests/tagset/offset/test_span_set.py
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_metric/true.conllx
tests/tagset/offset/test_corpus_statistics/data.conllx
tests/tagset/offset/test_document/corpus.conllx
tests/tagset/offset/test_seqeval/ground_truth.txt
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/hooks.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/conllz/__init__.py
tokenizer_tools/conllz/iterator_reader.py
tokenizer_tools/conllz/reader.py
tokenizer_tools/conllz/sentence.py
tokenizer_tools/conllz/writer.py
tokenizer_tools/converter/__init__.py
tokenizer_tools/converter/conllx_to_offset.py
tokenizer_tools/converter/conllx_to_rasa.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/seqeval.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/utils/__init__.py
tokenizer_tools/utils/batch_iterator.py
tokenizer_tools/utils/deprecated_api.py
tokenizer_tools/utils/deprecated_support.py