Spaces:
Runtime error
Runtime error
File size: 281 Bytes
55f08a9 |
1 2 3 4 5 6 7 8 9 10 |
from huggingface_hub import hf_hub_download
import torch
model_path = hf_hub_download(
repo_id="DennisHung/Pre-trained_AudioMAE_weights",
filename="pytorch_model.bin",
local_dir="./",
local_dir_use_symlinks=False
)
|