├── .cookiecutter.json ├── .cruft.json ├── .github ├── ISSUE_TEMPLATE │ ├── 01_bugs.md │ ├── 02_docs.md │ ├── 03_feature-request.md │ ├── 04_augmenter-request.md │ └── config.yml └── workflows │ ├── documentation.yml │ ├── lint.yml │ ├── release.yml │ ├── stalebot.yml │ ├── static_type_checks.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── citation.cff ├── docs ├── _static │ ├── favicon.ico │ ├── icon.png │ └── icon_dark.png ├── adding_an_augmenter.rst ├── augmenters_overview.md ├── augmenty.augment_utilities.rst ├── augmenty.character.rst ├── augmenty.doc.rst ├── augmenty.keyboard.rst ├── augmenty.lang.rst ├── augmenty.span.rst ├── augmenty.token.rst ├── augmenty.util.rst ├── conf.py ├── create_augmenters_table.py ├── faq.rst ├── index.rst ├── installation.rst ├── news.rst └── tutorials │ ├── introduction.ipynb │ ├── requirements.txt │ └── training_using_augmenty │ ├── .gitignore │ ├── README.md │ ├── augmenters.py │ ├── configs │ └── default.cfg │ ├── project.yml │ └── training_using_augmenty.ipynb ├── img └── icon.png ├── makefile ├── paper ├── paper.bib ├── paper.md ├── paper.pdf ├── paper.qmd └── readme.md ├── pyproject.toml ├── readme.md ├── src └── augmenty │ ├── __init__.py │ ├── about.py │ ├── augment_utilities.py │ ├── character │ ├── __init__.py │ ├── casing.py │ ├── replace.py │ ├── spacing.py │ └── swap.py │ ├── doc │ ├── __init__.py │ ├── casing.py │ └── subset.py │ ├── keyboard.py │ ├── lang │ ├── __init__.py │ ├── da │ │ ├── __init__.py │ │ ├── augmenters.py │ │ └── keyboard.py │ ├── de │ │ ├── __init__.py │ │ └── keyboard.py │ ├── el │ │ ├── __init__.py │ │ └── keyboard.py │ ├── en │ │ ├── __init__.py │ │ └── keyboard.py │ ├── es │ │ ├── __init__.py │ │ └── keyboard.py │ ├── fr │ │ ├── __init__.py │ │ └── keyboard.py │ ├── hu │ │ ├── __init__.py │ │ └── keyboard.py │ ├── it │ │ ├── __init__.py │ │ └── keyboard.py │ ├── lt │ │ ├── __init__.py │ │ └── keyboard.py │ ├── mk │ │ ├── __init__.py │ │ └── keyboard.py │ ├── nb │ │ ├── __init__.py │ │ └── keyboard.py │ ├── nl │ │ ├── __init__.py │ │ └── keyboard.py │ ├── pl │ │ ├── __init__.py │ │ └── keyboard.py │ ├── pt │ │ ├── __init__.py │ │ └── keyboard.py │ ├── ro │ │ ├── __init__.py │ │ └── keyboard.py │ └── ru │ │ ├── __init__.py │ │ └── keyboard.py │ ├── meta.json │ ├── span │ ├── __init__.py │ ├── entities.py │ └── utils.py │ ├── token │ ├── __init__.py │ ├── casing.py │ ├── insert.py │ ├── replace.py │ ├── spacing.py │ ├── static_embedding_util.py │ ├── swap.py │ └── wordnet_util.py │ └── util.py └── tests ├── __init__.py ├── books.py ├── conftest.py ├── lang ├── __init__.py └── test_da.py ├── requirements.txt ├── test_all_augmenters.py ├── test_augmentation_utilities.py ├── test_character.py ├── test_doc.py ├── test_general.py ├── test_issue_170.py ├── test_keyboard.py ├── test_spans.py ├── test_static_embedding.py ├── test_token.py └── test_util.py /.cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.cookiecutter.json -------------------------------------------------------------------------------- /.cruft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.cruft.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/ISSUE_TEMPLATE/01_bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/ISSUE_TEMPLATE/02_docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/ISSUE_TEMPLATE/03_feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04_augmenter-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/ISSUE_TEMPLATE/04_augmenter-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stalebot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/stalebot.yml -------------------------------------------------------------------------------- /.github/workflows/static_type_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/static_type_checks.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/LICENSE -------------------------------------------------------------------------------- /citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/citation.cff -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/_static/icon.png -------------------------------------------------------------------------------- /docs/_static/icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/_static/icon_dark.png -------------------------------------------------------------------------------- /docs/adding_an_augmenter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/adding_an_augmenter.rst -------------------------------------------------------------------------------- /docs/augmenters_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenters_overview.md -------------------------------------------------------------------------------- /docs/augmenty.augment_utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.augment_utilities.rst -------------------------------------------------------------------------------- /docs/augmenty.character.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.character.rst -------------------------------------------------------------------------------- /docs/augmenty.doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.doc.rst -------------------------------------------------------------------------------- /docs/augmenty.keyboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.keyboard.rst -------------------------------------------------------------------------------- /docs/augmenty.lang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.lang.rst -------------------------------------------------------------------------------- /docs/augmenty.span.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.span.rst -------------------------------------------------------------------------------- /docs/augmenty.token.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.token.rst -------------------------------------------------------------------------------- /docs/augmenty.util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/augmenty.util.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/create_augmenters_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/create_augmenters_table.py -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/news.rst -------------------------------------------------------------------------------- /docs/tutorials/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/introduction.ipynb -------------------------------------------------------------------------------- /docs/tutorials/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/.gitignore: -------------------------------------------------------------------------------- 1 | assets 2 | corpus 3 | training 4 | packages 5 | -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/training_using_augmenty/README.md -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/augmenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/training_using_augmenty/augmenters.py -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/configs/default.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/training_using_augmenty/configs/default.cfg -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/training_using_augmenty/project.yml -------------------------------------------------------------------------------- /docs/tutorials/training_using_augmenty/training_using_augmenty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/docs/tutorials/training_using_augmenty/training_using_augmenty.ipynb -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/img/icon.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/makefile -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /paper/paper.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/paper/paper.qmd -------------------------------------------------------------------------------- /paper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/paper/readme.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/readme.md -------------------------------------------------------------------------------- /src/augmenty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/__init__.py -------------------------------------------------------------------------------- /src/augmenty/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/about.py -------------------------------------------------------------------------------- /src/augmenty/augment_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/augment_utilities.py -------------------------------------------------------------------------------- /src/augmenty/character/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/character/__init__.py -------------------------------------------------------------------------------- /src/augmenty/character/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/character/casing.py -------------------------------------------------------------------------------- /src/augmenty/character/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/character/replace.py -------------------------------------------------------------------------------- /src/augmenty/character/spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/character/spacing.py -------------------------------------------------------------------------------- /src/augmenty/character/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/character/swap.py -------------------------------------------------------------------------------- /src/augmenty/doc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/doc/__init__.py -------------------------------------------------------------------------------- /src/augmenty/doc/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/doc/casing.py -------------------------------------------------------------------------------- /src/augmenty/doc/subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/doc/subset.py -------------------------------------------------------------------------------- /src/augmenty/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/__init__.py -------------------------------------------------------------------------------- /src/augmenty/lang/da/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/da/__init__.py -------------------------------------------------------------------------------- /src/augmenty/lang/da/augmenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/da/augmenters.py -------------------------------------------------------------------------------- /src/augmenty/lang/da/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/da/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/de/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_de # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/de/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/de/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/el/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_el # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/el/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/el/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/en/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_en # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/en/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/en/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/es/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_es # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/es/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/es/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/fr/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_fr # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/fr/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/fr/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/hu/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_hu # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/hu/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/hu/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/it/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_it # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/it/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/it/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/lt/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_lt # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/lt/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/lt/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/mk/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_mk # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/mk/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/mk/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/nb/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_nb # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/nb/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/nb/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/nl/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_nl # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/nl/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/nl/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/pl/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_pl # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/pl/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/pl/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/pt/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_pt # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/pt/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/pt/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/ro/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_qwerty_ro # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/ro/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/ro/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/lang/ru/__init__.py: -------------------------------------------------------------------------------- 1 | from .keyboard import create_ru # noqa 2 | -------------------------------------------------------------------------------- /src/augmenty/lang/ru/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/lang/ru/keyboard.py -------------------------------------------------------------------------------- /src/augmenty/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/meta.json -------------------------------------------------------------------------------- /src/augmenty/span/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/span/__init__.py -------------------------------------------------------------------------------- /src/augmenty/span/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/span/entities.py -------------------------------------------------------------------------------- /src/augmenty/span/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/span/utils.py -------------------------------------------------------------------------------- /src/augmenty/token/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/__init__.py -------------------------------------------------------------------------------- /src/augmenty/token/casing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/casing.py -------------------------------------------------------------------------------- /src/augmenty/token/insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/insert.py -------------------------------------------------------------------------------- /src/augmenty/token/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/replace.py -------------------------------------------------------------------------------- /src/augmenty/token/spacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/spacing.py -------------------------------------------------------------------------------- /src/augmenty/token/static_embedding_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/static_embedding_util.py -------------------------------------------------------------------------------- /src/augmenty/token/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/swap.py -------------------------------------------------------------------------------- /src/augmenty/token/wordnet_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/token/wordnet_util.py -------------------------------------------------------------------------------- /src/augmenty/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/src/augmenty/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/books.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/lang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/lang/test_da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/lang/test_da.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_all_augmenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_all_augmenters.py -------------------------------------------------------------------------------- /tests/test_augmentation_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_augmentation_utilities.py -------------------------------------------------------------------------------- /tests/test_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_character.py -------------------------------------------------------------------------------- /tests/test_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_doc.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tests/test_issue_170.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_issue_170.py -------------------------------------------------------------------------------- /tests/test_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_keyboard.py -------------------------------------------------------------------------------- /tests/test_spans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_spans.py -------------------------------------------------------------------------------- /tests/test_static_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_static_embedding.py -------------------------------------------------------------------------------- /tests/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_token.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/augmenty/HEAD/tests/test_util.py --------------------------------------------------------------------------------