yusuf-astral commited on
Commit
352d177
·
verified ·
1 Parent(s): 39e0144

Add semantics NPZs for hssd-102343992; rewrite README to match paper

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +32 -18
  2. hssd-102343992_wp0000_semantics.npz +3 -0
  3. hssd-102343992_wp0001_semantics.npz +3 -0
  4. hssd-102343992_wp0002_semantics.npz +3 -0
  5. hssd-102343992_wp0003_semantics.npz +3 -0
  6. hssd-102343992_wp0004_semantics.npz +3 -0
  7. hssd-102343992_wp0005_semantics.npz +3 -0
  8. hssd-102343992_wp0006_semantics.npz +3 -0
  9. hssd-102343992_wp0007_semantics.npz +3 -0
  10. hssd-102343992_wp0008_semantics.npz +3 -0
  11. hssd-102343992_wp0009_semantics.npz +3 -0
  12. hssd-102343992_wp0010_semantics.npz +3 -0
  13. hssd-102343992_wp0011_semantics.npz +3 -0
  14. hssd-102343992_wp0012_semantics.npz +3 -0
  15. hssd-102343992_wp0013_semantics.npz +3 -0
  16. hssd-102343992_wp0014_semantics.npz +3 -0
  17. hssd-102343992_wp0015_semantics.npz +3 -0
  18. hssd-102343992_wp0016_semantics.npz +3 -0
  19. hssd-102343992_wp0017_semantics.npz +3 -0
  20. hssd-102343992_wp0018_semantics.npz +3 -0
  21. hssd-102343992_wp0019_semantics.npz +3 -0
  22. hssd-102343992_wp0020_semantics.npz +3 -0
  23. hssd-102343992_wp0021_semantics.npz +3 -0
  24. hssd-102343992_wp0022_semantics.npz +3 -0
  25. hssd-102343992_wp0023_semantics.npz +3 -0
  26. hssd-102343992_wp0024_semantics.npz +3 -0
  27. hssd-102343992_wp0025_semantics.npz +3 -0
  28. hssd-102343992_wp0026_semantics.npz +3 -0
  29. hssd-102343992_wp0027_semantics.npz +3 -0
  30. hssd-102343992_wp0028_semantics.npz +3 -0
  31. hssd-102343992_wp0029_semantics.npz +3 -0
  32. hssd-102343992_wp0030_semantics.npz +3 -0
  33. hssd-102343992_wp0031_semantics.npz +3 -0
  34. hssd-102343992_wp0032_semantics.npz +3 -0
  35. hssd-102343992_wp0033_semantics.npz +3 -0
  36. hssd-102343992_wp0034_semantics.npz +3 -0
  37. hssd-102343992_wp0035_semantics.npz +3 -0
  38. hssd-102343992_wp0036_semantics.npz +3 -0
  39. hssd-102343992_wp0037_semantics.npz +3 -0
  40. hssd-102343992_wp0038_semantics.npz +3 -0
  41. hssd-102343992_wp0039_semantics.npz +3 -0
  42. hssd-102343992_wp0040_semantics.npz +3 -0
  43. hssd-102343992_wp0041_semantics.npz +3 -0
  44. hssd-102343992_wp0042_semantics.npz +3 -0
  45. hssd-102343992_wp0043_semantics.npz +3 -0
  46. hssd-102343992_wp0044_semantics.npz +3 -0
  47. hssd-102343992_wp0045_semantics.npz +3 -0
  48. hssd-102343992_wp0046_semantics.npz +3 -0
  49. hssd-102343992_wp0047_semantics.npz +3 -0
  50. hssd-102343992_wp0048_semantics.npz +3 -0
README.md CHANGED
@@ -24,7 +24,7 @@ language:
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
 
@@ -32,17 +32,20 @@ who want to verify the data format and content before downloading the full 3.8 T
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
 
@@ -52,22 +55,26 @@ 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
@@ -77,11 +84,14 @@ 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
  ```
@@ -89,11 +99,15 @@ plt.tight_layout(); plt.savefig("yonder_sample.png", dpi=150)
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
@@ -114,7 +128,7 @@ licensing and Responsible AI considerations.
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},
 
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.3 TB release.
28
 
29
  ## What's included
30
 
 
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
37
+ - **Semantic segmentation** for every waypoint (50 matching `*_semantics.npz` files)
38
+ - ~50 × 10 MB sensor + 50 × ~25 KB semantics ≈ **500 MB** total
39
 
40
  ## What's NOT in this sample
41
 
 
 
 
42
  - **Multiple scenes** — by design. This sample is a single-scene slice. The full
43
+ release spans **167 HSSD scenes**, all with semantic annotations. Other scene
44
+ sources (ReplicaCAD, Replica, HM3D) considered during early collection have been
45
+ excluded from the public release for license-compatibility reasons; see the
46
+ [main dataset card](https://huggingface.co/datasets/astralhf/yonder) for details.
47
+ - **COCO bounding-box annotations** — derived programmatically from the semantic
48
+ channels and shipped per-scene under `annotations/` on the main repo.
49
 
50
  ## Quick start
51
 
 
55
 
56
  local = snapshot_download(repo_id="astralhf/yonder-sample", repo_type="dataset")
57
 
58
+ # Sensor data
59
  data = np.load(f"{local}/hssd-102343992_wp0000.npz")
60
  print(sorted(data.keys())[:10])
61
  # ['down_ir', 'lidar360', 'orientation', 'position', 'up_ir',
62
  # 'yaw000_forward_depth', 'yaw000_landing_cam', 'yaw000_left_rgb',
63
  # 'yaw000_right_rgb', 'yaw001_forward_depth']
64
 
 
65
  print("left_rgb yaw000:", data["yaw000_left_rgb"].shape, data["yaw000_left_rgb"].dtype)
66
  # left_rgb yaw000: (480, 640, 3) uint8
67
  print("forward_depth yaw000:", data["yaw000_forward_depth"].shape, data["yaw000_forward_depth"].dtype)
68
  # forward_depth yaw000: (480, 640) float16
69
  print("lidar360:", data["lidar360"].shape, data["lidar360"].dtype)
70
  # lidar360: (1024, 16) float32
71
+
72
+ # Semantic segmentation (one file per waypoint, 12 yaw keys)
73
+ sem = np.load(f"{local}/hssd-102343992_wp0000_semantics.npz")
74
+ print(sorted(sem.keys())[:4])
75
+ # ['yaw000_semantic', 'yaw030_semantic', 'yaw060_semantic', 'yaw090_semantic']
76
+ print("semantic yaw000:", sem["yaw000_semantic"].shape, sem["yaw000_semantic"].dtype)
77
+ # semantic yaw000: (480, 640) uint16 (per-pixel instance ID)
78
  ```
79
 
80
  ## Visualizing a frame
 
84
  import matplotlib.pyplot as plt
85
 
86
  data = np.load("hssd-102343992_wp0000.npz")
87
+ sem = np.load("hssd-102343992_wp0000_semantics.npz")
88
+ fig, axes = plt.subplots(1, 4, figsize=(20, 5))
89
+ axes[0].imshow(data["yaw000_left_rgb"]); axes[0].set_title("Left RGB")
90
+ axes[1].imshow(data["yaw000_right_rgb"]); axes[1].set_title("Right RGB")
91
  axes[2].imshow(data["yaw000_forward_depth"], cmap="plasma")
92
  axes[2].set_title("Forward depth (m)")
93
+ axes[3].imshow(sem["yaw000_semantic"], cmap="tab20")
94
+ axes[3].set_title("Semantic instance IDs")
95
  for a in axes: a.axis("off")
96
  plt.tight_layout(); plt.savefig("yonder_sample.png", dpi=150)
97
  ```
 
99
  ## Going to the full dataset
100
 
101
  ```python
102
+ # Single scene from the full repo (~25 GB sensor + semantics)
103
  snapshot_download(
104
  repo_id="astralhf/yonder",
105
  repo_type="dataset",
106
+ allow_patterns=[
107
+ "indoor/drone-data/augmented/hssd-102343992/*.npz",
108
+ "semantics/hssd-102343992/*.npz",
109
+ "annotations/hssd-102343992/*.json",
110
+ ],
111
  )
112
 
113
  # Just the manifests (a few MB) to plan a custom download
 
128
 
129
  ```bibtex
130
  @inproceedings{anonymous2026yonder,
131
+ title = {Yonder: A 4.65M-Frame Drone Navigation Dataset and the Cross-Simulator Generalization Gap},
132
  author = {Anonymous Author(s)},
133
  booktitle = {NeurIPS Datasets and Benchmarks Track},
134
  year = {2026},
hssd-102343992_wp0000_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfe6fb6c8f04dbfde451a8ee53bd05b84ff902b07ddf718ed76faac98c3a9c95
3
+ size 15007
hssd-102343992_wp0001_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9224bd97287e76202ccf2afdfe5690bd1b85dc755dd0c2199bafb20954ac094
3
+ size 10994
hssd-102343992_wp0002_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9672dc4fbd64ed46f1f074840095048b3720c549c146ecddce7436107917935f
3
+ size 12821
hssd-102343992_wp0003_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7038a8b81372f8486d1aedeaaf5c0ec14a3b5cd7c693b04f16ba36e4e085cd2
3
+ size 11481
hssd-102343992_wp0004_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b21919cab74da66158f28ad47922869b23e66591d54ec8048029e6848e3248d
3
+ size 26838
hssd-102343992_wp0005_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:311c71e5e2e560258eed4191d5ff4ce4831ec05edafb0f46b2321d2ec3d02b5f
3
+ size 23965
hssd-102343992_wp0006_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a1ecd2bb27daefbd9df7cdb14b65c8ff678ae1d66ee50d082df388b27bc2224
3
+ size 24037
hssd-102343992_wp0007_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:400aa5e53ce8f5c10ad2479bcb6bb1f20df77abae25e2ca7ca8dda785c878b1f
3
+ size 24003
hssd-102343992_wp0008_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af7d546f5d9adb05cab6214dc158c128f1a3fc840ce300f0ff913c68ee177ad9
3
+ size 23816
hssd-102343992_wp0009_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea7b0d094853e0b70ce3df433d9e69e3e928e5df521a44462876bff63223f3c4
3
+ size 23829
hssd-102343992_wp0010_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4accfe1e2f9ef9f7f6a4e4a42d0019aa71de81770d92f5e2857cdc4fad9d1f67
3
+ size 23807
hssd-102343992_wp0011_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f9b820a73328e6abe74eb7a3d5cefd2c23326b0f4bb71f588169b96508a32fd
3
+ size 23810
hssd-102343992_wp0012_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d964c3d18b2261f0113fbfd02ad4d714ece676d78d2acf1e0a1f2eed9b8b5ad2
3
+ size 23765
hssd-102343992_wp0013_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:047d64461990657fdb103bbeb39497318091027972ed121eb1e8a4f34b527131
3
+ size 23914
hssd-102343992_wp0014_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f88891049981bcb44f39188a602932235db8f058dbcba84f53a3d0ee1cffb81
3
+ size 23770
hssd-102343992_wp0015_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b83a3f66cc77a3c1f3a10322171b663b3a355065c6abbbccd9f57d20dde24e2
3
+ size 23560
hssd-102343992_wp0016_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26898f25a338c39160ad43ca1bc60a9fcbd94436e84a56fc75f46eedc42b76b1
3
+ size 24610
hssd-102343992_wp0017_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52a1cc7fe9079fb96c17303496a1c5586550c4807d318c00ab3f36972cae22f3
3
+ size 24291
hssd-102343992_wp0018_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfaa6ec7f82ee4873b1d58e2597567160cc63eb3b941b4c347b5face908618c2
3
+ size 24259
hssd-102343992_wp0019_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8acbad91d5c9ac7ef36a1642ce690dbd08ef851f3870db69bc075123de73db0a
3
+ size 24334
hssd-102343992_wp0020_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38d5c8aed4b50863816e532efca1d3ac28a77556b41a7e6e5db6a56beac848ed
3
+ size 24325
hssd-102343992_wp0021_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ef0f6201098be1b4508eedfaf25cc26bdf5dda213e851b667c678e2885f4640
3
+ size 24201
hssd-102343992_wp0022_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7c5fcd83332e4973d26938124074563d73f5e850a11e0048b0b0ccdacfd231a
3
+ size 24250
hssd-102343992_wp0023_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:132cbf17c9ec75c85008bc3ebcac9b3286af49e3d179ebf738fe6eb309f3012f
3
+ size 24210
hssd-102343992_wp0024_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:feb4a0311a884109af176c5cdda44b2cc59e0505fa559d1f113d8b9b3ce78e47
3
+ size 24416
hssd-102343992_wp0025_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26569223bb9edb4f0c61f63866e07ab5347a89277c02d45eccd59eb7e7998934
3
+ size 24326
hssd-102343992_wp0026_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aca0e30d6cf598b050bd289e25ea0f1379c14156dfa4505afb83b1510537683
3
+ size 24008
hssd-102343992_wp0027_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23f743afc09b24e4266683ca0bda91d16609e811e08e556928257606f07a3a01
3
+ size 25152
hssd-102343992_wp0028_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d56d9400f38bd0dce66417e2c42ed516d19a0795ad7291dde1970735ebbadbb8
3
+ size 25128
hssd-102343992_wp0029_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa3f8adeeb17379e84d92c948b2594ee9b74ca4b0ba0f9ab52caa01166a51148
3
+ size 25016
hssd-102343992_wp0030_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db2516c186974a9263e7ded8c5f21d861b6f5c34f93013f31f45d17ee48ed48f
3
+ size 25009
hssd-102343992_wp0031_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b6bde89f4e8d4e4b0f80bdd6a2f233af0d8eb451ef27bd7169cf71f8fe7565e
3
+ size 24887
hssd-102343992_wp0032_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:876a6f4630289a4dd15a435bd96732e4fb52138cf87a493060e3d212ba2913e2
3
+ size 24577
hssd-102343992_wp0033_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b12726c96dcd2e81be42e0690fd47c700740918fb04b23d8efcc985af076a4d
3
+ size 24644
hssd-102343992_wp0034_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad79aacf079b3788d96cbc71af241984831021ec7d5d233603a10be64c14962e
3
+ size 24809
hssd-102343992_wp0035_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e91bc427340dfacb0256f0743a9ba7e2442cdc08f7b832d6a26a0e5cf422a7b7
3
+ size 24764
hssd-102343992_wp0036_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:090f9ebc2045fcdbbd57dd55a576895d2a0751454ccbdf30973000a9c3bc6f0c
3
+ size 24737
hssd-102343992_wp0037_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe4debaabdbb384271795c4e53f9f0e9749f3758ba14c1c28e42e5eb2f61bbcc
3
+ size 24709
hssd-102343992_wp0038_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:993f037fa762329f014e9992a04f9a5c81ce6a1b300e340322a4df0b7829b1d0
3
+ size 26173
hssd-102343992_wp0039_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee03f56ec1b85eea1c38b8c774766f09f28556f52b7ef0ece2ccd908c8147f87
3
+ size 25835
hssd-102343992_wp0040_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1279a41c3f9d5f89f51bb5c1bc3e2a8ea429c044b9af37e1891dbaa0c67ee8d
3
+ size 25606
hssd-102343992_wp0041_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20d39d8764826cfc88e827a92b4abe3b8085be98e0e07446f97b3d6d939255bb
3
+ size 25884
hssd-102343992_wp0042_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2b778cfa98d094cbcc5eae55fd7aa88b3ce5fb4faa2d2f6d66ee881d8196636
3
+ size 25555
hssd-102343992_wp0043_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19b1e581050e3659a1d1e7f471cfac13a1c47ffdf68ebb728388eb2bedeaeaf5
3
+ size 25373
hssd-102343992_wp0044_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9313d19bfef8263b86c9f5f80139c25c4d9c15254a79b3641980565d728c003
3
+ size 25141
hssd-102343992_wp0045_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2670727cdbcd1a71e0a7b4fd9581f309928b80981ce9df905315e5d2691404af
3
+ size 25263
hssd-102343992_wp0046_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:292f8f7a9aecb43144fa7efda9233dec4c52fab95aa8d8f14302aa1f77f78a4d
3
+ size 25306
hssd-102343992_wp0047_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02a7d58cfff78d5f0f0c2fd135db4d1e5eabf2d2db1f227c5430ed154cb03cf4
3
+ size 25089
hssd-102343992_wp0048_semantics.npz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01fa6a320e1b5ed1ed048116ded001d813ce0eef1f074cc94e8ac730f836a8f6
3
+ size 24981