Datasets:
Commit
·
c18722c
1
Parent(s):
4f051fb
cred_key from json
Browse files- vox_celeb.py +1 -1
vox_celeb.py
CHANGED
@@ -211,7 +211,7 @@ class VoxCeleb(datasets.GeneratorBasedBuilder):
|
|
211 |
if cred_key is None:
|
212 |
if creds_path.exists():
|
213 |
with open(creds_path, "r") as creds:
|
214 |
-
|
215 |
else:
|
216 |
print(
|
217 |
"You need a temporary username and password to access VoxCeleb.",
|
|
|
211 |
if cred_key is None:
|
212 |
if creds_path.exists():
|
213 |
with open(creds_path, "r") as creds:
|
214 |
+
cred_key = json.load(creds)
|
215 |
else:
|
216 |
print(
|
217 |
"You need a temporary username and password to access VoxCeleb.",
|