Abstract function for computing any values which are to be calculated as a whole during initialization Args: results (``AttackResult`` objects): Attack results for each instance in dataset
(self, results)
| 18 | |
| 19 | @abstractmethod |
| 20 | def calculate(self, results): |
| 21 | """Abstract function for computing any values which are to be calculated as a whole during initialization |
| 22 | Args: |
| 23 | results (``AttackResult`` objects): |
| 24 | Attack results for each instance in dataset |
| 25 | """ |
| 26 | |
| 27 | raise NotImplementedError |
no outgoing calls