File size: 276 Bytes
7accb91
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from huggingface_hub import hf_hub_download

import shutil
import os


file_path = hf_hub_download(
    repo_id="autonomousvision/navsim_baselines",
    filename="ltf/ltf_seed_0.ckpt",
)

os.makedirs("./ckpts", exist_ok=True)
shutil.copy(file_path, "./ckpts/ltf_seed_0.ckpt")