Initialize the backend.
(self, vectors: npt.NDArray, arguments: BasicArgs)
| 101 | supported_metrics = {Metric.COSINE, Metric.EUCLIDEAN} |
| 102 | |
| 103 | def __init__(self, vectors: npt.NDArray, arguments: BasicArgs) -> None: |
| 104 | """Initialize the backend.""" |
| 105 | super().__init__(vectors=vectors, arguments=arguments) |
| 106 | |
| 107 | @property |
| 108 | def backend_type(self) -> Backend: |