| 252 | |
| 253 | |
| 254 | class AugmentationResult: |
| 255 | def __init__(self, text1, text2): |
| 256 | self.original_result = self.tempResult(text1) |
| 257 | self.perturbed_result = self.tempResult(text2) |
| 258 | |
| 259 | class tempResult: |
| 260 | def __init__(self, text): |
| 261 | self.attacked_text = text |