(*args, **kwargs)
| 22 | |
| 23 | @staticmethod |
| 24 | def download(*args, **kwargs): |
| 25 | from huggingface_hub.file_download import hf_hub_download |
| 26 | |
| 27 | return hf_hub_download(*args, **kwargs) |
| 28 | |
| 29 | @classmethod |
| 30 | def from_pretrained( |
no outgoing calls
no test coverage detected