1
0
mirror of https://github.com/QData/TextAttack.git synced 2021-10-13 00:05:06 +03:00
Files
textattack-nlp-transformer/textattack/augmentation/__init__.py
2020-10-30 13:02:55 -04:00

17 lines
443 B
Python

""".. _augmentation:
Augmenter:
==================
Transformations and constraints can be used outside of an attack for simple NLP data augmentation with the ``Augmenter`` class that returns all possible transformations for a given string.
"""
from .augmenter import Augmenter
from .recipes import (
WordNetAugmenter,
EmbeddingAugmenter,
CharSwapAugmenter,
EasyDataAugmenter,
CheckListAugmenter,
DeletionAugmenter,
)