matybohacek
commited on
Commit
•
66dc51d
1
Parent(s):
fc72f5d
Update deepaction_v1.py
Browse files- deepaction_v1.py +1 -1
deepaction_v1.py
CHANGED
@@ -41,7 +41,7 @@ class DeepActionV1(datasets.GeneratorBasedBuilder):
|
|
41 |
base_url = "https://huggingface.co/datasets/faridlab/deepaction_v1/tree/main/"
|
42 |
|
43 |
for engine in SUPPORTED:
|
44 |
-
for i in range(95) + range(99, 104):
|
45 |
if engine in ["Pexels", "Veo"]:
|
46 |
urls.append(os.path.join(base_url, engine, "{}".format(i), "a.mp4"))
|
47 |
else:
|
|
|
41 |
base_url = "https://huggingface.co/datasets/faridlab/deepaction_v1/tree/main/"
|
42 |
|
43 |
for engine in SUPPORTED:
|
44 |
+
for i in list(range(95)) + list(range(99, 104)):
|
45 |
if engine in ["Pexels", "Veo"]:
|
46 |
urls.append(os.path.join(base_url, engine, "{}".format(i), "a.mp4"))
|
47 |
else:
|