anonymous8/RPD-Demo
initial commit
4943752
raw
history blame
532 Bytes
""".. _augmentation:
TextAttack augmentation package:
=================================
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,
CLAREAugmenter,
BackTranslationAugmenter,
)