nielsr HF Staff commited on
Commit
d56987f
·
verified ·
1 Parent(s): 948cbc2

Improve dataset card: add task category, GitHub link, and directory structure

Browse files

Hi! I'm Niels from the Hugging Face community science team.

I've updated the dataset card to include:
- The `image-to-3d` task category in the metadata.
- A link to the official GitHub repository.
- Detailed information about the dataset directory structure (JAX and NYC) to help users understand how to organize the files for training.
- A citation section with the appropriate BibTeX entry.

Files changed (1) hide show
  1. README.md +51 -3
README.md CHANGED
@@ -1,11 +1,59 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
4
 
5
  # The datasets for Skyfall-GS
6
 
7
- > Skyfall-GS: Synthesizing Immersive 3D Urban Scenes from Satellite Imagery
8
 
9
- Check our project page: https://skyfall-gs.jayinnn.dev/
10
 
11
- arXiv link: arxiv.org/abs/2510.15869
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - image-to-3d
5
  ---
6
 
7
  # The datasets for Skyfall-GS
8
 
9
+ [Project Page](https://skyfall-gs.jayinnn.dev/) | [Paper](https://arxiv.org/abs/2510.15869) | [GitHub](https://github.com/jayin92/skyfall-gs)
10
 
11
+ Skyfall-GS is a hybrid framework that synthesizes immersive, city-block scale 3D urban scenes by combining satellite reconstruction with diffusion refinement. This repository contains the JAX and NYC datasets used for training and evaluation.
12
 
13
+ ## Dataset Structure
14
+
15
+ According to the [official GitHub documentation](https://github.com/jayin92/skyfall-gs), the datasets should be organized in the `data/` directory as follows:
16
+
17
+ ```
18
+ data/
19
+ ├── datasets_JAX/
20
+ │ ├── JAX_004
21
+ │ ├── JAX_068
22
+ │ └── ...
23
+ └── datasets_NYC/
24
+ ├── NYC_004
25
+ ├── NYC_010
26
+ └── ...
27
+ ```
28
+
29
+ Each individual scene directory (e.g., `JAX_068`) contains the following structure:
30
+
31
+ ```
32
+ your_dataset/
33
+ ├── images/ # RGB images
34
+ │ ├── image_001.png
35
+ │ ├── image_002.png
36
+ │ └── ...
37
+ ├── masks/ # Binary masks for valid pixels (optional)
38
+ │ ├── *.npy # NumPy format
39
+ │ ├── *.png # PNG format
40
+ │ └── ...
41
+ ├── transforms_train.json # Training camera parameters
42
+ ├── transforms_test.json # Testing camera parameters (optional)
43
+ └── points3D.txt # 3D point cloud
44
+ ```
45
+
46
+ ## Citation
47
+
48
+ If you find this work or the datasets useful, please consider citing:
49
+
50
+ ```bibtex
51
+ @article{lee2025SkyfallGS,
52
+ title = {{Skyfall-GS}: Synthesizing Immersive {3D} Urban Scenes from Satellite Imagery},
53
+ author = {Jie-Ying Lee and Yi-Ruei Liu and Shr-Ruei Tsai and Wei-Cheng Chang and Chung-Ho Wu and Jiewen Chan and Zhenjun Zhao and Chieh Hubert Lin and Yu-Lun Liu},
54
+ journal = {arXiv preprint},
55
+ year = {2025},
56
+ eprint = {2510.15869},
57
+ archivePrefix = {arXiv}
58
+ }
59
+ ```