Rapid-Textual-Adversarial-Defense
/
textattack
/transformations
/sentence_transformations
/sentence_transformation.py
""" | |
SentenceTransformation class | |
----------------------------------- | |
https://github.com/makcedward/nlpaug | |
""" | |
from textattack.transformations import Transformation | |
class SentenceTransformation(Transformation): | |
def _get_transformations(self, current_text, indices_to_modify): | |
raise NotImplementedError() | |