Nicous commited on
Commit
dee5fdf
·
verified ·
1 Parent(s): 59e1186

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -46,10 +46,12 @@ snapshot_download(
46
  )
47
 
48
  from huggingface_hub import hf_hub_download
49
- egogpt_path = hf_hub_download(
50
- repo_id="EgoLife-v1/EgoGPT",
 
 
51
  filename="large-v3.pt",
52
- cache_dir="./large-v3.pt"
53
  )
54
 
55
 
 
46
  )
47
 
48
  from huggingface_hub import hf_hub_download
49
+
50
+ # Download the model checkpoint file (large-v3.pt)
51
+ ego_gpt_path = hf_hub_download(
52
+ repo_id="EgoLife-v1/EgoGPT",
53
  filename="large-v3.pt",
54
+ local_dir="./"
55
  )
56
 
57