(self, response: str, item: Dict)
| 16 | |
| 17 | @abstractmethod |
| 18 | def _extract_prediction(self, response: str, item: Dict) -> str: |
| 19 | pass |
| 20 | |
| 21 | @abstractmethod |
| 22 | def _calculate_accuracy(self, answer: str, prediction: str, item: Dict) -> bool: |
no outgoing calls
no test coverage detected