Update model card with metadata, links, and description

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +46 -1
README.md CHANGED
@@ -1 +1,46 @@
1
- ###Coming soon
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: other
3
+ library_name: diffusers
4
+ ---
5
+
6
+ # SounDiT: Geo-Contextual Soundscape-to-Landscape Generation
7
+
8
+ SounDiT is a diffusion transformer (DiT)-based model designed for the **Geo-contextual Soundscape-to-Landscape (GeoS2L)** generation task. It synthesizes geographically realistic landscape images from environmental soundscapes by incorporating geo-contextual scene conditioning.
9
+
10
+ - **Paper:** [SounDiT: Geo-Contextual Soundscape-to-Landscape Generation](https://huggingface.co/papers/2505.12734)
11
+ - **Project Page:** [https://gisense.github.io/SounDiT-Page/](https://gisense.github.io/SounDiT-Page/)
12
+ - **Repository:** [https://github.com/GISense/SounDiT](https://github.com/GISense/SounDiT)
13
+
14
+ ## Overview
15
+ Recent audio-to-image models often struggle to reconstruct real-world landscapes from environmental soundscapes. SounDiT addresses this gap using a DiT architecture that leverages diverse environmental soundscapes and scene conditioning to ensure geographical coherence. To evaluate this task, the authors introduced the Place Similarity Score (PSS) framework, which captures multi-level generation consistency across element, scene, and human perception.
16
+
17
+ ## Code Usage
18
+
19
+ ### Environment Setup
20
+
21
+ ```bash
22
+ conda env create -f environment.yml
23
+ conda activate SounDiT
24
+ ```
25
+
26
+ ### Inference
27
+
28
+ ```bash
29
+ bash ./scripts/inference.sh
30
+ ```
31
+
32
+ ## Citation
33
+
34
+ If you use SounDiT in your research, please cite the following paper:
35
+
36
+ ```bibtex
37
+ @misc{wang2025sounditgeocontextualsoundscapetolandscapegeneration,
38
+ title={SounDiT: Geo-Contextual Soundscape-to-Landscape Generation},
39
+ author={Junbo Wang and Haofeng Tan and Bowen Liao and Albert Jiang and Teng Fei and Qixing Huang and Zhengzhong Tu and Shan Ye and Yuhao Kang},
40
+ year={2025},
41
+ eprint={2505.12734},
42
+ archivePrefix={arXiv},
43
+ primaryClass={cs.SD},
44
+ url={https://arxiv.org/abs/2505.12734}
45
+ }
46
+ ```