Load a selectable basic backend.
(cls, path: Path)
| 97 | |
| 98 | @classmethod |
| 99 | def load(cls, path: Path) -> "SelectableBasicBackend": |
| 100 | """Load a selectable basic backend.""" |
| 101 | loaded = super().load(path) |
| 102 | return SelectableBasicBackend(loaded.vectors, loaded.arguments) |