Robert Schulz commited on
Commit
2bd996c
·
1 Parent(s): f625711

updated README

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -65,7 +65,8 @@ _**Figure 1** Model architecture_
65
  from huggingface_hub import HfApi
66
 
67
  api = HfApi()
68
- model_path = api.hf_hub_download('SchulzR97/TUC-AR-C3D', filename='tuc-ar.pth')
 
69
  ```
70
 
71
  ### 2.2 UCF101 Dataset
@@ -96,4 +97,5 @@ from huggingface_hub import HfApi
96
 
97
  api = HfApi()
98
  model_path = api.hf_hub_download('SchulzR97/TUC-AR-C3D', filename='ucf101.pth')
 
99
  ```
 
65
  from huggingface_hub import HfApi
66
 
67
  api = HfApi()
68
+ model_path = api.hf_hub_download('SchulzR97/TUC-AR-C3D', filename='tuc-arpth')
69
+ model = torch.load(model_path)
70
  ```
71
 
72
  ### 2.2 UCF101 Dataset
 
97
 
98
  api = HfApi()
99
  model_path = api.hf_hub_download('SchulzR97/TUC-AR-C3D', filename='ucf101.pth')
100
+ model = torch.load(model_path)
101
  ```