fpaissan commited on
Commit
c08ce91
1 Parent(s): 0a777ff

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -1,3 +1,12 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ ```[python]
6
+ from huggingface_hub import hf_hub_download
7
+
8
+ REPO_ID = "fpaissan/phinet_voc"
9
+ FILENAME = "state-dict.pth.tar"
10
+
11
+ model = hf_hub_download(repo_id=REPO_ID, filename=FILENAME)
12
+ ```