File size: 321 Bytes
63775f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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()