(self, file_path_list, model_names=None, device=None, torch_dtype=None)
| 422 | |
| 423 | |
| 424 | def load_models(self, file_path_list, model_names=None, device=None, torch_dtype=None): |
| 425 | for file_path in file_path_list: |
| 426 | self.load_model(file_path, model_names, device=device, torch_dtype=torch_dtype) |
| 427 | |
| 428 | |
| 429 | def fetch_model(self, model_name, file_path=None, require_model_path=False): |
no test coverage detected