Source code for textattack.transformations.sentence_transformations.sentence_transformation

"""
SentenceTransformation class
-----------------------------------

https://github.com/makcedward/nlpaug

"""

from textattack.transformations import Transformation


[docs]class SentenceTransformation(Transformation): def _get_transformations(self, current_text, indices_to_modify): raise NotImplementedError()