Commit
·
9110c66
1
Parent(s):
f9f09f4
Add whoami function call to authenticate Hugging Face token
Browse files- gradio_interface.py +2 -0
gradio_interface.py
CHANGED
@@ -5,6 +5,8 @@ from huggingface_hub import upload_file, snapshot_download
|
|
5 |
import shutil
|
6 |
import os
|
7 |
from pathlib import Path
|
|
|
|
|
8 |
|
9 |
SUBMISSION_REPO = "SushantGautam/medvqa-submissions"
|
10 |
hub_dir = None
|
|
|
5 |
import shutil
|
6 |
import os
|
7 |
from pathlib import Path
|
8 |
+
from huggingface_hub import whoami
|
9 |
+
whoami(token=os.getenv("HF_TOKEN"))
|
10 |
|
11 |
SUBMISSION_REPO = "SushantGautam/medvqa-submissions"
|
12 |
hub_dir = None
|