Datasets:
Tasks:
Depth Estimation
Modalities:
Image
Languages:
English
Size:
1K - 10K
ArXiv:
Tags:
depth-estimation
License:
chore: change to relative paths.
Browse files- nyu_depth_v2.py +2 -8
nyu_depth_v2.py
CHANGED
|
@@ -44,14 +44,8 @@ _HOMEPAGE = "https://cs.nyu.edu/~silberman/datasets/nyu_depth_v2.html"
|
|
| 44 |
_LICENSE = "Apace 2.0 License"
|
| 45 |
|
| 46 |
_URLS = {
|
| 47 |
-
"train": [
|
| 48 |
-
|
| 49 |
-
for i in range(12)
|
| 50 |
-
],
|
| 51 |
-
"val": [
|
| 52 |
-
f"https://huggingface.co/datasets/sayakpaul/nyu_depth_v2/resolve/main/data/val-{i:06d}.tar"
|
| 53 |
-
for i in range(2)
|
| 54 |
-
],
|
| 55 |
}
|
| 56 |
|
| 57 |
_IMG_EXTENSIONS = [".h5"]
|
|
|
|
| 44 |
_LICENSE = "Apace 2.0 License"
|
| 45 |
|
| 46 |
_URLS = {
|
| 47 |
+
"train": [f"data/train-{i:06d}.tar" for i in range(12)],
|
| 48 |
+
"val": [f"data/val-{i:06d}.tar" for i in range(2)],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
}
|
| 50 |
|
| 51 |
_IMG_EXTENSIONS = [".h5"]
|