Improve dataset card: Add sample usage for data download and dataset description

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +31 -9
README.md CHANGED
@@ -1,13 +1,13 @@
1
  ---
2
  license: apache-2.0
3
  task_categories:
4
- - depth-estimation
5
  tags:
6
- - depth-estimation
7
- - panorama
8
- - 360-depth
9
- - 360-depth-estimation
10
- - 360-image
11
  ---
12
 
13
  # DA<sup>2</sup>: Depth Anything in Any Direction
@@ -21,9 +21,31 @@ tags:
21
 
22
  ![teaser](assets/teaser.jpg)
23
 
24
- # 🎮 Usage
25
- Please see [here](https://github.com/EnVision-Research/DA-2?tab=readme-ov-file#-evaluation).
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
 
28
  # 🎓 Citation
29
 
@@ -57,4 +79,4 @@ If you find these datasets useful, please consider citing 🌹:
57
  journal={arXiv preprint arXiv:1811.05304},
58
  year={2018}
59
  }
60
- ```
 
1
  ---
2
  license: apache-2.0
3
  task_categories:
4
+ - depth-estimation
5
  tags:
6
+ - depth-estimation
7
+ - panorama
8
+ - 360-depth
9
+ - 360-depth-estimation
10
+ - 360-image
11
  ---
12
 
13
  # DA<sup>2</sup>: Depth Anything in Any Direction
 
21
 
22
  ![teaser](assets/teaser.jpg)
23
 
24
+ ## Dataset Description
25
+ This dataset, `haodongli/DA-2`, provides approximately 607K high-quality panoramic RGB-depth pairs. These pairs were generated using a data curation engine that creates panoramic depth data from perspective images, as detailed in the associated paper [DA$^2$: Depth Anything in Any Direction](https://huggingface.co/papers/2509.26618).
26
 
27
+ ## 💾 Sample Usage: Downloading Evaluation Data
28
+
29
+ To download the evaluation datasets used in the paper, which are hosted on Hugging Face:
30
+
31
+ 1. Navigate to your desired data directory:
32
+ ```bash
33
+ cd [YOUR_DATA_DIR]
34
+ ```
35
+ 2. Login to Hugging Face CLI (if you haven't already):
36
+ ```bash
37
+ huggingface-cli login
38
+ ```
39
+ 3. Download the `haodongli/DA-2-Evaluation` dataset:
40
+ ```bash
41
+ hf download --repo-type dataset haodongli/DA-2-Evaluation --local-dir [YOUR_DATA_DIR]
42
+ ```
43
+ 4. Unzip the downloaded datasets (e.g., `[DATA_NAME].tar.gz` like `scenet.tar.gz`):
44
+ ```bash
45
+ tar -zxvf [DATA_NAME].tar.gz
46
+ ```
47
+
48
+ For full evaluation instructions and more details, please refer to the [GitHub repository's evaluation section](https://github.com/EnVision-Research/DA-2?tab=readme-ov-file#-evaluation).
49
 
50
  # 🎓 Citation
51
 
 
79
  journal={arXiv preprint arXiv:1811.05304},
80
  year={2018}
81
  }
82
+ ```