(self, model_path: str)
| 29 | """The base and the default model adapter.""" |
| 30 | |
| 31 | def match(self, model_path: str): |
| 32 | return True |
| 33 | |
| 34 | def load_model(self, model_path: str, from_pretrained_kwargs: dict): |
| 35 | tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False) |
no outgoing calls
no test coverage detected