mirror of
https://github.com/QData/TextAttack.git
synced 2021-10-13 00:05:06 +03:00
14 lines
406 B
Python
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,
|
|
)
|