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
Yanjun Qi 2ea690bbc6 a major shift to rst files generated by sphinx-apidoc
major docstring clean up / plus reorganize the folder structure under docs
2020-10-25 20:21:43 -04:00

14 lines
406 B
Python

"""
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,
)