yusuf-astral commited on
Commit
48fb42f
·
verified ·
1 Parent(s): 0fe1e1d

Initial reviewer sample: 50 waypoints from hssd-102343992 (~500MB) + dataset card

Browse files
Files changed (2) hide show
  1. README.md +123 -0
  2. hssd-102343992_wp0000.npz +3 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - robotics
5
+ - drone-navigation
6
+ - vision-language-navigation
7
+ - open-vocabulary-detection
8
+ - embodied-ai
9
+ - habitat-sim
10
+ - benchmark
11
+ - preview-sample
12
+ task_categories:
13
+ - object-detection
14
+ - depth-estimation
15
+ - robotics
16
+ size_categories:
17
+ - n<1K
18
+ pretty_name: "Yonder (NeurIPS reviewer sample)"
19
+ language:
20
+ - en
21
+ ---
22
+
23
+ # Yonder Sample — NeurIPS 2026 Reviewer Preview
24
+
25
+ This is a **~500 MB sample** of the [Yonder](https://huggingface.co/datasets/astralhf/yonder)
26
+ drone navigation dataset, intended for fast inspection by NeurIPS reviewers and others
27
+ who want to verify the data format and content before downloading the full 3.8 TB release.
28
+
29
+ ## What's included
30
+
31
+ - **One HSSD scene:** `hssd-102343992`
32
+ - **50 consecutive waypoint NPZs** (`wp0000` through `wp0049`)
33
+ - **All 12 yaw orientations** per waypoint
34
+ - **All sensor modalities** present in the full dataset:
35
+ stereo RGB (left/right), forward depth, landing-camera, up-IR, down-IR,
36
+ 360° LiDAR, position, orientation, IMU
37
+ - ~50 × 10 MB ≈ **500 MB** total
38
+
39
+ ## What's NOT in this sample
40
+
41
+ - **Semantic segmentation** — this particular scene does not have semantic annotations.
42
+ The full dataset includes semantics for 92 of 251 scenes; download the main repo and
43
+ filter by `manifest.json` `has_semantics: true` to obtain a semantics-bearing sample.
44
+ - **Multiple scenes** — by design. This sample is a single-scene slice. The full
45
+ release spans 251 scenes (167 HSSD + 84 ReplicaCAD).
46
+
47
+ ## Quick start
48
+
49
+ ```python
50
+ from huggingface_hub import snapshot_download
51
+ import numpy as np
52
+
53
+ local = snapshot_download(repo_id="astralhf/yonder-sample", repo_type="dataset")
54
+
55
+ # Inspect the first waypoint
56
+ data = np.load(f"{local}/hssd-102343992_wp0000.npz")
57
+ print(sorted(data.keys())[:10])
58
+ # ['down_ir', 'lidar360', 'orientation', 'position', 'up_ir',
59
+ # 'yaw000_forward_depth', 'yaw000_landing_cam', 'yaw000_left_rgb',
60
+ # 'yaw000_right_rgb', 'yaw001_forward_depth']
61
+
62
+ # Shapes
63
+ print("left_rgb yaw000:", data["yaw000_left_rgb"].shape, data["yaw000_left_rgb"].dtype)
64
+ # left_rgb yaw000: (480, 640, 3) uint8
65
+ print("forward_depth yaw000:", data["yaw000_forward_depth"].shape, data["yaw000_forward_depth"].dtype)
66
+ # forward_depth yaw000: (480, 640) float16
67
+ print("lidar360:", data["lidar360"].shape, data["lidar360"].dtype)
68
+ # lidar360: (1024, 16) float32
69
+ print("position:", data["position"])
70
+ # position: (3,) float32 — Habitat-Sim world frame
71
+ ```
72
+
73
+ ## Visualizing a frame
74
+
75
+ ```python
76
+ import numpy as np
77
+ import matplotlib.pyplot as plt
78
+
79
+ data = np.load("hssd-102343992_wp0000.npz")
80
+ fig, axes = plt.subplots(1, 3, figsize=(15, 5))
81
+ axes[0].imshow(data["yaw000_left_rgb"]); axes[0].set_title("Left RGB")
82
+ axes[1].imshow(data["yaw000_right_rgb"]); axes[1].set_title("Right RGB")
83
+ axes[2].imshow(data["yaw000_forward_depth"], cmap="plasma")
84
+ axes[2].set_title("Forward depth (m)")
85
+ for a in axes: a.axis("off")
86
+ plt.tight_layout(); plt.savefig("yonder_sample.png", dpi=150)
87
+ ```
88
+
89
+ ## Going to the full dataset
90
+
91
+ ```python
92
+ # Single scene from the full repo (~25 GB)
93
+ snapshot_download(
94
+ repo_id="astralhf/yonder",
95
+ repo_type="dataset",
96
+ allow_patterns="indoor/drone-data/augmented/hssd-102343992/*.npz",
97
+ )
98
+
99
+ # Just the manifests (a few MB) to plan a custom download
100
+ snapshot_download(
101
+ repo_id="astralhf/yonder",
102
+ repo_type="dataset",
103
+ allow_patterns="indoor/drone-data/augmented/*/manifest.json",
104
+ )
105
+ ```
106
+
107
+ ## License
108
+
109
+ CC-BY-NC-4.0 (inheriting HSSD's NonCommercial restriction). See the
110
+ [main dataset card](https://huggingface.co/datasets/astralhf/yonder) for full
111
+ licensing and Responsible AI considerations.
112
+
113
+ ## Citation
114
+
115
+ ```bibtex
116
+ @inproceedings{anonymous2026yonder,
117
+ title = {Yonder: A 6.1M-Frame Drone Navigation Dataset and the Cross-Simulator Generalization Gap},
118
+ author = {Anonymous Author(s)},
119
+ booktitle = {NeurIPS Datasets and Benchmarks Track},
120
+ year = {2026},
121
+ note = {Anonymized for double-blind review.}
122
+ }
123
+ ```
hssd-102343992_wp0000.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80c2db58196c8d0e6de031a662b1876bfb60956b8f120db020f27d97ac54a5c8
3
+ size 11849675