Spaces:
Runtime error
Runtime error
| from abc import ABC, abstractmethod | |
| from typing import List, Optional, Tuple | |
| class BaseReranker(ABC): | |
| def predict(self, sentences: List[Tuple[str, str]]) -> Optional[List[float]]: | |
| pass | |