Spaces:
Sleeping
Sleeping
File size: 321 Bytes
4a1df2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
"""
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()
|