Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: bsd-3-clause
|
| 3 |
+
pretty_name: GRaF-sim
|
| 4 |
+
tags:
|
| 5 |
+
- wireless
|
| 6 |
+
- radio-frequency
|
| 7 |
+
- spectrum
|
| 8 |
+
- neural-radiance-fields
|
| 9 |
+
- sionna
|
| 10 |
+
- arxiv:2502.05708
|
| 11 |
+
task_categories:
|
| 12 |
+
- other
|
| 13 |
+
size_categories:
|
| 14 |
+
- 10K<n<100K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# GRaF-sim — Simulated RF Spectrum Dataset
|
| 18 |
+
|
| 19 |
+
Simulated wireless channel spectra for 18 indoor scenes, released with the CVPR 2026 paper
|
| 20 |
+
**"Generalizable Radio-Frequency Radiance Fields for Spatial Spectrum Synthesis"** by
|
| 21 |
+
Kang Yang, Yuning Chen, and Wan Du.
|
| 22 |
+
|
| 23 |
+
📄 **Paper:** [arXiv:2502.05708](https://arxiv.org/abs/2502.05708) ·
|
| 24 |
+
💻 **Code:** [github.com/kangyang73/GRaF](https://github.com/kangyang73/GRaF) ·
|
| 25 |
+
🤖 **Models:** [kyang73/GRaF-pretrained](https://huggingface.co/kyang73/GRaF-pretrained)
|
| 26 |
+
|
| 27 |
+
Used to train and evaluate **GRaF**, a generalizable radio field model.
|
| 28 |
+
|
| 29 |
+
Each scene is modeled as a box room with ITU-material walls and furniture primitives. For
|
| 30 |
+
every transmitter position, [Sionna](https://nvlabs.github.io/sionna/) ray-tracing computes
|
| 31 |
+
the channel response at an 8 × 8 receiver array, and conventional beamforming over a
|
| 32 |
+
360° × 90° azimuth–elevation grid produces the final spatial spectrum image.
|
| 33 |
+
|
| 34 |
+
## Scenes
|
| 35 |
+
|
| 36 |
+
Each category contains six scene variants with increasing furniture/clutter.
|
| 37 |
+
|
| 38 |
+
| Category | Room | Room size (m) | Scenes |
|
| 39 |
+
|----------|-------------------|-------------------|-------------|
|
| 40 |
+
| A | Conference Room | 8.0 × 6.0 × 3.0 | `D2`–`D7` |
|
| 41 |
+
| B | Classroom | 10.0 × 7.0 × 3.0 | `D8`–`D13` |
|
| 42 |
+
| C | Bedroom | 5.0 × 4.0 × 2.8 | `D14`–`D19` |
|
| 43 |
+
|
| 44 |
+
## Per-scene layout
|
| 45 |
+
|
| 46 |
+
```
|
| 47 |
+
D<i>/
|
| 48 |
+
├── gateway_info.yml # room size + receiver (gateway) pose
|
| 49 |
+
├── tx_pos.csv # 5 340 transmitter positions (x, y, z)
|
| 50 |
+
└── spectrum/
|
| 51 |
+
├── 00001.png # 360 × 90 grayscale spectrum (azimuth × elevation)
|
| 52 |
+
├── 00002.png
|
| 53 |
+
└── ... # one image per TX position
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
**Totals:** 18 scenes × 5 340 samples ≈ 96 K spectrum images, ~785 MB.
|
| 57 |
+
|
| 58 |
+
## Download
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
from huggingface_hub import snapshot_download
|
| 62 |
+
snapshot_download("kyang73/GRaF-sim", repo_type="dataset", local_dir="data")
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
Or via CLI:
|
| 66 |
+
|
| 67 |
+
```bash
|
| 68 |
+
hf download kyang73/GRaF-sim --repo-type dataset --local-dir data
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
## Citation
|
| 72 |
+
|
| 73 |
+
If you use this dataset, please cite:
|
| 74 |
+
|
| 75 |
+
```bibtex
|
| 76 |
+
@inproceedings{Yang2026_GRaF,
|
| 77 |
+
author = {Kang Yang and Yuning Chen and Wan Du},
|
| 78 |
+
title = {Generalizable Radio-Frequency Radiance Fields for Spatial Spectrum Synthesis},
|
| 79 |
+
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 80 |
+
year = {2026},
|
| 81 |
+
}
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
## License
|
| 85 |
+
|
| 86 |
+
Released under the BSD 3-Clause License. Copyright (c) 2025, Kang Yang, Yuning Chen, and
|
| 87 |
+
Wan Du. See the [GRaF repository](https://github.com/kangyang73/GRaF) for full terms.
|