Create README.md
Browse files
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 |
+
```
|