.gitignore
.pre-commit-config.yaml
AUTHORS.rst
CHANGELOG.rst
LICENSE.txt
MANIFEST.in
Makefile
README.md
environment_dev.yml
setup.cfg
setup.py
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/question.md
.github/workflows/ci.yml
docs/biome_text_logo_for_readme.png
docs/package.json
docs/prepare_versioned_build.sh
docs/.templates/config.mako
docs/.templates/html.mako
docs/docs/README.md
docs/docs/.vuepress/config.js
docs/docs/.vuepress/public/favicon.ico
docs/docs/.vuepress/public/assets/fonts/BasisGrotesquePro-Bold.woff
docs/docs/.vuepress/public/assets/fonts/BasisGrotesquePro-Light.woff
docs/docs/.vuepress/public/assets/fonts/BasisGrotesquePro-Regular.woff
docs/docs/.vuepress/public/assets/fonts/justmeagaindownhere.woff
docs/docs/.vuepress/public/assets/img/allennlp.png
docs/docs/.vuepress/public/assets/img/allennlp.svg
docs/docs/.vuepress/public/assets/img/bg.svg
docs/docs/.vuepress/public/assets/img/biome-isotype.svg
docs/docs/.vuepress/public/assets/img/biome.svg
docs/docs/.vuepress/public/assets/img/hugging.png
docs/docs/.vuepress/public/assets/img/huggingface.svg
docs/docs/.vuepress/public/assets/img/pytorch.svg
docs/docs/.vuepress/public/assets/img/recognai.png
docs/docs/.vuepress/theme/enhanceApp.js
docs/docs/.vuepress/theme/index.js
docs/docs/.vuepress/theme/components/AlgoliaSearchBox.vue
docs/docs/.vuepress/theme/components/Home.vue
docs/docs/.vuepress/theme/components/NavLink.vue
docs/docs/.vuepress/theme/components/Navbar.vue
docs/docs/.vuepress/theme/components/PageNav.vue
docs/docs/.vuepress/theme/components/Sidebar.vue
docs/docs/.vuepress/theme/components/Versions.vue
docs/docs/.vuepress/theme/components/search-orange.svg
docs/docs/.vuepress/theme/components/search.svg
docs/docs/.vuepress/theme/layouts/404.vue
docs/docs/.vuepress/theme/layouts/Layout.vue
docs/docs/.vuepress/theme/styles/code-colors.styl
docs/docs/.vuepress/theme/styles/fonts.styl
docs/docs/.vuepress/theme/styles/index.styl
docs/docs/.vuepress/theme/styles/palette.styl
docs/docs/api/README.md
docs/docs/documentation/basics.md
docs/docs/documentation/readme.md
docs/docs/documentation/community/1-contributing.md
docs/docs/documentation/community/2-get_help.md
docs/docs/documentation/community/3-developer_guides.md
docs/docs/documentation/tutorials/1-Training_a_text_classifier.ipynb
docs/docs/documentation/tutorials/2-Training_a_sequence_tagger_for_Slot_Filling.ipynb
docs/docs/documentation/tutorials/3-Hyperparameter_optimization_with_Ray_Tune.ipynb
docs/docs/documentation/tutorials/4-Using_Transformers_in_biome_text.ipynb
docs/docs/documentation/tutorials/img/analysis_df.png
docs/docs/documentation/tutorials/img/hpo_tensorboard.png
docs/docs/documentation/tutorials/img/text_classifier_explore_screenshot.png
docs/docs/documentation/user-guides/1-nlp-tasks.md
docs/docs/documentation/user-guides/2-configuration.md
docs/docs/documentation/user-guides/3-deployment.md
docs/docs/icons/blank.svg
docs/docs/icons/chev-left.svg
docs/docs/icons/chev-right.svg
docs/internal_docs/configs.md
src/biome/__init__.py
src/biome/text/__init__.py
src/biome/text/backbone.py
src/biome/text/commons.py
src/biome/text/configuration.py
src/biome/text/dataset.py
src/biome/text/errors.py
src/biome/text/features.py
src/biome/text/featurizer.py
src/biome/text/helpers.py
src/biome/text/hpo.py
src/biome/text/metrics.py
src/biome/text/mlflow_model.py
src/biome/text/model.py
src/biome/text/pipeline.py
src/biome/text/text_cleaning.py
src/biome/text/tokenizer.py
src/biome/text/trainer.py
src/biome/text/vocabulary.py
src/biome/text/cli/__init__.py
src/biome/text/cli/cli.py
src/biome/text/cli/evaluate.py
src/biome/text/cli/serve.py
src/biome/text/cli/train.py
src/biome/text/modules/__init__.py
src/biome/text/modules/configuration/__init__.py
src/biome/text/modules/configuration/allennlp_configuration.py
src/biome/text/modules/configuration/defs.py
src/biome/text/modules/encoders/__init__.py
src/biome/text/modules/encoders/time_distributed_encoder.py
src/biome/text/modules/heads/__init__.py
src/biome/text/modules/heads/language_modelling.py
src/biome/text/modules/heads/task_head.py
src/biome/text/modules/heads/task_prediction.py
src/biome/text/modules/heads/token_classification.py
src/biome/text/modules/heads/classification/__init__.py
src/biome/text/modules/heads/classification/classification.py
src/biome/text/modules/heads/classification/doc_classification.py
src/biome/text/modules/heads/classification/record_classification.py
src/biome/text/modules/heads/classification/record_pair_classification.py
src/biome/text/modules/heads/classification/relation_classification.py
src/biome/text/modules/heads/classification/text_classification.py
src/biome_text.egg-info/PKG-INFO
src/biome_text.egg-info/SOURCES.txt
src/biome_text.egg-info/dependency_links.txt
src/biome_text.egg-info/entry_points.txt
src/biome_text.egg-info/not-zip-safe
src/biome_text.egg-info/requires.txt
src/biome_text.egg-info/top_level.txt
tests/__init__.py
tests/conftest.py
tests/text_classification_integration_test.py
tests/docs/__init__.py
tests/docs/test_configurations.py
tests/docs/test_tutorials.py
tests/resources/data/business.cat.2k.train.csv
tests/resources/data/business.cat.2k.valid.csv
tests/resources/data/dataset_sequence.json
tests/resources/data/dataset_sequence.jsonl
tests/resources/data/dataset_source.csv
tests/resources/data/dataset_source.jsonl
tests/resources/data/emotions_with_transformers.txt
tests/resources/data/nested-list.jsonl
tests/resources/data/test.parquet
tests/resources/data/test.xlsx
tests/resources/data/to-be-flattened.jsonl
tests/text/__init__.py
tests/text/test_cli.py
tests/text/test_commons.py
tests/text/test_configuration.py
tests/text/test_dataset.py
tests/text/test_features_configuration.py
tests/text/test_features_transformers.py
tests/text/test_hpo.py
tests/text/test_metrics.py
tests/text/test_model_predict.py
tests/text/test_pipeline_copy.py
tests/text/test_pipeline_datasets.py
tests/text/test_pipeline_predict.py
tests/text/test_pipeline_save.py
tests/text/test_pipeline_to_mlflow.py
tests/text/test_pipeline_tokenizer.py
tests/text/test_pipeline_vocab.py
tests/text/test_pipeline_with_custom_head.py
tests/text/test_pipeline_with_optional_inputs.py
tests/text/test_pretrained_word_vectors.py
tests/text/test_text_cleaning.py
tests/text/test_tokenizer.py
tests/text/test_trainer.py
tests/text/modules/__init__.py
tests/text/modules/configuration/test_component_configuration.py
tests/text/modules/heads/__init__.py
tests/text/modules/heads/test_language_modelling.py
tests/text/modules/heads/test_task_head.py
tests/text/modules/heads/test_token_classification.py
tests/text/modules/heads/classification/__init__.py
tests/text/modules/heads/classification/test_document_classification.py
tests/text/modules/heads/classification/test_record_pair_classification.py
tests/text/modules/heads/classification/test_relation_classifier.py
tests/text/modules/heads/classification/test_text_classification.py