Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
10K<n<100K
ArXiv:
Tags:
depth-estimation
License:
sayakpaul HF staff commited on
Commit
a918863
1 Parent(s): 592761d

chore: change to relative paths.

Browse files
Files changed (1) hide show
  1. 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
- f"https://huggingface.co/datasets/sayakpaul/nyu_depth_v2/resolve/main/data/train-{i:06d}.tar"
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"]