nielsr HF Staff commited on
Commit
31cadef
·
verified ·
1 Parent(s): e6a3143

Add task categories, paper link, and toolkit usage

Browse files

Hi! I'm Niels from the Hugging Face community science team. I've opened this PR to enhance the dataset card for SpaceSense-Bench.

The improvements include:
- Adding relevant **task categories** to the YAML metadata (`object-detection`, `image-segmentation`, `depth-estimation`, and `other` for pose estimation).
- Linking the dataset to its **research paper** and official **project page**.
- Adding a **Sample Usage** section with code snippets from the GitHub README to demonstrate how to use the provided toolkit for format conversion and visualization.
- Adding the official **BibTeX citation**.

These changes make the dataset more discoverable and easier for researchers to integrate into their workflows!

Files changed (1) hide show
  1. README.md +52 -19
README.md CHANGED
@@ -1,20 +1,29 @@
1
  ---
2
  license: cc-by-nc-4.0
3
- pretty_name: "SpaceSense-Bench"
4
  size_categories:
5
- - 70GB
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
 
8
  # SpaceSense-Bench: Multi-Modal Spacecraft Perception and Pose Estimation Dataset
9
 
10
- A high-fidelity simulation-based multi-modal(RGB, Depth, LiDAR Point Cloud) dataset for spacecraft component-level semantic understanding, containing **136 satellite models** with synchronized multi-modal data.
11
-
12
- **Toolkit & Code:** [https://github.com/wuaodi/SpaceSense-Bench](https://github.com/wuaodi/SpaceSense-Bench)
13
 
 
14
 
15
  ![teaser](https://cdn-uploads.huggingface.co/production/uploads/65a5e3a86145ebc6e7fefb20/e8ehYJXlWgR7vhq7LDLwM.png)
16
 
17
-
18
  ## Dataset Overview
19
 
20
  | Item | Detail |
@@ -26,6 +35,32 @@ A high-fidelity simulation-based multi-modal(RGB, Depth, LiDAR Point Cloud) data
26
  | Semantic Classes | 7 (main_body, solar_panel, dish_antenna, omni_antenna, payload, thruster, adapter_ring) |
27
  | Simulation Platform | Unreal Engine 5.2.0 + AirSim 1.8.1 |
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ## Data Modalities
30
 
31
  | Modality | Format | Unit / Range | Description |
@@ -76,12 +111,6 @@ The training and validation sets contain **completely non-overlapping satellite
76
  | Test | 14 | Every 10th by index: seq 00, 10, 20, ..., 130 |
77
  | Validation | 5 | Seq 131-135, reserved for future testing |
78
 
79
- **Test satellites (14):**
80
- ACE (00), CALIPSO (10), Dawn (20), ExoMars_TGO (30), GRAIL (40), Integral (50), LADEE (60), Lunar_Reconnaissance_Orbiter (70), Mercury_Magnetospheric_Orbiter (80), OSIRIS_REX (90), Proba_2 (100), SOHO (110), Suomi_NPP (120), Ulysses (130)
81
-
82
- **Validation satellites (5):**
83
- Van_Allen_Probe (131), Venus_Express (132), Voyager (133), WIND (134), XMM_newton (135)
84
-
85
  ## Data Organization
86
 
87
  Each `.tar.gz` file in the `raw/` folder contains data for one satellite:
@@ -99,7 +128,6 @@ Each `.tar.gz` file in the `raw/` folder contains data for one satellite:
99
  └── ...
100
  ```
101
 
102
-
103
  ## Semantic Class Definitions
104
 
105
  | Class ID | Name | Description |
@@ -113,12 +141,17 @@ Each `.tar.gz` file in the `raw/` folder contains data for one satellite:
113
  | 6 | thruster | Thrusters / propulsion systems |
114
  | 7 | adapter_ring | Launch adapter rings |
115
 
116
- ## Usage
117
-
118
- ### Format Conversion
119
-
120
- Use the toolkit at [https://github.com/wuaodi/SpaceSense-Bench](https://github.com/wuaodi/SpaceSense-Bench) to convert raw data to standard formats
121
-
122
  ## License
123
 
124
  This dataset is released under the [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/) license. Non-commercial use only.
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
 
3
  size_categories:
4
+ - 10GB<n<100GB
5
+ pretty_name: SpaceSense-Bench
6
+ task_categories:
7
+ - object-detection
8
+ - image-segmentation
9
+ - depth-estimation
10
+ - other
11
+ tags:
12
+ - space
13
+ - satellite
14
+ - multi-modal
15
+ - lidar
16
+ - pose-estimation
17
  ---
18
 
19
  # SpaceSense-Bench: Multi-Modal Spacecraft Perception and Pose Estimation Dataset
20
 
21
+ [**Project Page**](https://wuaodi.github.io/SpaceSense-Bench/) | [**Paper**](https://huggingface.co/papers/2603.09320) | [**Toolkit & Code**](https://github.com/wuaodi/SpaceSense-Bench)
 
 
22
 
23
+ SpaceSense-Bench is a high-fidelity simulation-based multi-modal (RGB, Depth, LiDAR Point Cloud) dataset for spacecraft component-level semantic understanding, containing **136 satellite models** with synchronized multi-modal data.
24
 
25
  ![teaser](https://cdn-uploads.huggingface.co/production/uploads/65a5e3a86145ebc6e7fefb20/e8ehYJXlWgR7vhq7LDLwM.png)
26
 
 
27
  ## Dataset Overview
28
 
29
  | Item | Detail |
 
35
  | Semantic Classes | 7 (main_body, solar_panel, dish_antenna, omni_antenna, payload, thruster, adapter_ring) |
36
  | Simulation Platform | Unreal Engine 5.2.0 + AirSim 1.8.1 |
37
 
38
+ ## Sample Usage
39
+
40
+ The [SpaceSense-Toolkit](https://github.com/wuaodi/SpaceSense-Bench/tree/main/SpaceSense-Toolkit) provides tools for converting raw data to standard formats and visualizing the results.
41
+
42
+ ### Installation
43
+
44
+ ```bash
45
+ pip install -r requirements.txt
46
+ ```
47
+
48
+ ### Conversion and Visualization
49
+
50
+ ```bash
51
+ # Visualize the raw data
52
+ python SpaceSense-Toolkit/visualize/raw_data_web_visualizer.py --raw-data data_example
53
+
54
+ # Convert to Semantic-KITTI (3D segmentation)
55
+ python SpaceSense-Toolkit/convert/airsim_to_semantickitti.py --raw-data data_example --output output/semantickitti --satellite-json SpaceSense-Toolkit/configs/satellite_descriptions.json
56
+
57
+ # Convert to MMSegmentation (2D segmentation)
58
+ python SpaceSense-Toolkit/convert/airsim_to_mmseg.py --raw-data data_example --output output/mmseg
59
+
60
+ # Convert to YOLO (Object detection)
61
+ python SpaceSense-Toolkit/convert/airsim_to_yolo.py --raw-data data_example --output output/yolo
62
+ ```
63
+
64
  ## Data Modalities
65
 
66
  | Modality | Format | Unit / Range | Description |
 
111
  | Test | 14 | Every 10th by index: seq 00, 10, 20, ..., 130 |
112
  | Validation | 5 | Seq 131-135, reserved for future testing |
113
 
 
 
 
 
 
 
114
  ## Data Organization
115
 
116
  Each `.tar.gz` file in the `raw/` folder contains data for one satellite:
 
128
  └── ...
129
  ```
130
 
 
131
  ## Semantic Class Definitions
132
 
133
  | Class ID | Name | Description |
 
141
  | 6 | thruster | Thrusters / propulsion systems |
142
  | 7 | adapter_ring | Launch adapter rings |
143
 
 
 
 
 
 
 
144
  ## License
145
 
146
  This dataset is released under the [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/) license. Non-commercial use only.
147
+
148
+ ## Citation
149
+
150
+ ```bibtex
151
+ @article{SpaceSense-Bench,
152
+ title={SpaceSense-Bench: A Large-Scale Multi-Modal Benchmark for Spacecraft Perception and Pose Estimation},
153
+ author={Aodi Wu, Jianhong Zuo, Zeyuan Zhao, Xubo Luo, Ruisuo Wang, Xue Wan},
154
+ year={2026},
155
+ url={https://arxiv.org/abs/2603.09320}
156
+ }
157
+ ```