Commit
·
dfec462
1
Parent(s):
aac9227
Fix
Browse files- rgbdsod_datasets.py +1 -2
rgbdsod_datasets.py
CHANGED
@@ -15,7 +15,6 @@
|
|
15 |
"""TODO: Add a description here."""
|
16 |
|
17 |
|
18 |
-
import csv
|
19 |
import json
|
20 |
import os
|
21 |
from typing import Dict, List
|
@@ -68,7 +67,7 @@ def get_download_url(config_name: str, partition: str) -> str:
|
|
68 |
Returns:
|
69 |
str: URL to download file
|
70 |
"""
|
71 |
-
return f"https://huggingface.co/datasets/RGBD-SOD/
|
72 |
|
73 |
|
74 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|
|
|
15 |
"""TODO: Add a description here."""
|
16 |
|
17 |
|
|
|
18 |
import json
|
19 |
import os
|
20 |
from typing import Dict, List
|
|
|
67 |
Returns:
|
68 |
str: URL to download file
|
69 |
"""
|
70 |
+
return f"https://huggingface.co/datasets/RGBD-SOD/rgbdsod_datasets/resolve/main/data/{config_name}/{partition}.zip"
|
71 |
|
72 |
|
73 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|