AiEson2 commited on
Commit
e905b8c
·
verified ·
1 Parent(s): 30b8d47

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -3
README.md CHANGED
@@ -1,3 +1,86 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ - zh
6
+ tags:
7
+ - Audio
8
+ - ImpactSound
9
+ size_categories:
10
+ - 100M<n<1B
11
+ ---
12
+
13
+ # SonicGauss Dataset
14
+
15
+ This dataset contains processed **ObjectFolder 2.0** and **ObjectFolder Real** data for training the [SonicGauss](https://chunshi.wang/SonicGauss/) model - a position-aware physical sound synthesis framework for 3D Gaussian representations.
16
+
17
+ ## Dataset Description
18
+
19
+ The dataset includes:
20
+ - **3D Gaussian Splatting (3DGS) PLY files** extracted from object scans
21
+ - **Impact sound recordings** at various positions
22
+ - **Rendered images** from multiple viewpoints
23
+ - **Training/validation split files** in JSON format
24
+
25
+ ### Dataset Statistics
26
+
27
+ - **ObjectFolder 2.0**: 1,000 objects with synthetic impact sounds
28
+ - **ObjectFolder Real**: Real-world recordings with diverse materials
29
+ - **Total Size**: ~24.7 GB (split archive)
30
+
31
+ ## Dataset Structure
32
+
33
+ ```
34
+ datas/
35
+ ├── objectfolder_2.0_train.json
36
+ ├── objectfolder_2.0_val.json
37
+ ├── objectfolder_real_train.json
38
+ ├── objectfolder_real_val.json
39
+ ├── OF_Real/
40
+ │ └── ObjectFolderResults/
41
+ └── OF_2.0/
42
+ ├── audio_results/ # Impact sound recordings (.wav)
43
+ └── vision_results/ # 3DGS PLY files (.ply)
44
+ ```
45
+
46
+ ## Usage
47
+
48
+ ```bash
49
+ # Download using huggingface-cli
50
+ pip install huggingface-hub
51
+ huggingface-cli download AiEson2/SonicGauss --repo-type dataset --local-dir ./datas/
52
+ ```
53
+
54
+ ## Citation
55
+
56
+ If you use this dataset, please cite:
57
+
58
+ ```bibtex
59
+ @inproceedings{wang2025sonicgauss,
60
+ title={SonicGauss: Position-Aware Physical Sound Synthesis for 3D Gaussian Representations},
61
+ author={Wang, Chunshi and Li, Hongxing and Luo, Yawei},
62
+ booktitle={Proceedings of the 33rd ACM International Conference on Multimedia},
63
+ pages={10886--10895},
64
+ year={2025}
65
+ }
66
+
67
+ @inproceedings{gao2023objectfolder,
68
+ title={The objectfolder benchmark: Multisensory learning with neural and real objects},
69
+ author={Gao, Ruohan and Dou, Yiming and Li, Hao and Agarwal, Tanmay and Bohg, Jeannette and Li, Yunzhu and Fei-Fei, Li and Wu, Jiajun},
70
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
71
+ pages={17276--17286},
72
+ year={2023}
73
+ }
74
+
75
+ @inproceedings{gao2022objectfolder,
76
+ title={Objectfolder 2.0: A multisensory object dataset for sim2real transfer},
77
+ author={Gao, Ruohan and Si, Zilin and Chang, Yen-Yu and Clarke, Samuel and Bohg, Jeannette and Fei-Fei, Li and Yuan, Wenzhen and Wu, Jiajun},
78
+ booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
79
+ pages={10598--10608},
80
+ year={2022}
81
+ }
82
+ ```
83
+
84
+ ## License
85
+
86
+ This dataset is derived from ObjectFolder and is distributed under the same terms. Please refer to the original [ObjectFolder](https://objectfolder.stanford.edu/) project for licensing details.