ai / backend /rexpro_ai /retrieval /models /base_reranker.py
fdrah
initial-commit
9e93b10
Raw
History Blame Contribute Delete
219 Bytes
from abc import ABC, abstractmethod
from typing import List, Optional, Tuple
class BaseReranker(ABC):
@abstractmethod
def predict(self, sentences: List[Tuple[str, str]]) -> Optional[List[float]]:
pass