(self, texts: List[str], **kwargs)
| 206 | logger.debug(f"Init {self.__class__.__name__}'s embedding_model_name with: {self.embedding_model_name}") |
| 207 | |
| 208 | def batch_encode(self, texts: List[str], **kwargs) -> None: |
| 209 | raise NotImplementedError |
| 210 | |
| 211 | |
| 212 | def get_query_doc_scores(self, query_vec: np.ndarray, doc_vecs: np.ndarray): |
no outgoing calls
no test coverage detected