Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- wireless
|
| 7 |
+
- channel-estimation
|
| 8 |
+
- rf
|
| 9 |
+
- gaussian-splatting
|
| 10 |
+
- sionna
|
| 11 |
+
- massive-mimo
|
| 12 |
+
- rfid
|
| 13 |
+
pretty_name: GSpaRC Datasets
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# GSpaRC Datasets
|
| 19 |
+
|
| 20 |
+
Datasets used in the paper **"GSpaRC: Gaussian Splatting for Real-time Reconstruction of RF Channels"**.
|
| 21 |
+
|
| 22 |
+
- 📄 **Paper:** [arXiv:2511.22793](https://arxiv.org/abs/2511.22793)
|
| 23 |
+
- 🌐 **Project website:** https://nbhavyasai.github.io/GSpaRC/
|
| 24 |
+
- 💻 **Code:** https://github.com/Nbhavyasai/GSpaRC-WirelessGaussianSplatting
|
| 25 |
+
|
| 26 |
+
We evaluate GSpaRC on three RF datasets. Only the **Sionna conference-room** dataset is hosted in this repository (it was generated by us). The **RFID** and **Argos** datasets are publicly available from their original sources, linked below.
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
## 1. Sionna Conference-Room Dataset (hosted here)
|
| 31 |
+
|
| 32 |
+
Indoor spectrum dataset generated with the [Sionna](https://nvlabs.github.io/sionna/) ray tracer. A single transmitter is fixed near the ceiling and 5,142 receiver positions are sampled across the room floor. Each receiver position yields one spatial spectrum image.
|
| 33 |
+
|
| 34 |
+
**Files** (under `sionna_conference_room/`):
|
| 35 |
+
|
| 36 |
+
| File | Description |
|
| 37 |
+
|---|---|
|
| 38 |
+
| `spectrum/00001.npy` … `05142.npy` | Per-position spatial spectrum (`90 × 360` magnitude image, `float32`) |
|
| 39 |
+
| `rx_pos.csv` | Receiver positions, columns: `x, y, z` (5,142 rows) |
|
| 40 |
+
| `gateway_info.yml` | Transmitter position `[0.0, 0.5, 3.0]` and orientation quaternion |
|
| 41 |
+
|
| 42 |
+
**Splits used in the paper:**
|
| 43 |
+
- 3,599 training positions / 1,543 test positions (random split)
|
| 44 |
+
|
| 45 |
+
**Scene:** indoor conference room, 14 m × 10 m × 4 m, with tables, chairs, glass partitions and irregular wall materials, producing rich multipath.
|
| 46 |
+
|
| 47 |
+
### Loading example
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
import numpy as np
|
| 51 |
+
import pandas as pd
|
| 52 |
+
import yaml
|
| 53 |
+
|
| 54 |
+
# Receiver positions
|
| 55 |
+
rx_pos = pd.read_csv("sionna_conference_room/rx_pos.csv") # columns: x,y,z
|
| 56 |
+
|
| 57 |
+
# Transmitter
|
| 58 |
+
with open("sionna_conference_room/gateway_info.yml") as f:
|
| 59 |
+
info = yaml.safe_load(f)
|
| 60 |
+
tx_pos = info["gateway1"]["position"] # [0.0, 0.5, 3.0]
|
| 61 |
+
|
| 62 |
+
# Spectrum at the i-th receiver position
|
| 63 |
+
spec = np.load(f"sionna_conference_room/spectrum/{i:05d}.npy") # (90, 360)
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
---
|
| 67 |
+
|
| 68 |
+
## 2. RFID Spectrum Dataset (external)
|
| 69 |
+
|
| 70 |
+
Real-world dataset originally released with the **NeRF²** paper.
|
| 71 |
+
|
| 72 |
+
- **Download:** [OneDrive link](https://onedrive.live.com/?redeem=aHR0cHM6Ly8xZHJ2Lm1zL2YvYy82MGQ1MjkwOWYyYjA0YTZjL0V0Z0h1QzR0NnhwRm8xdHNYemdRUWZjQmdveXJnWmtrVndmOXdjWDhxeEpzalE%5FZT1oTWVFWFE&id=60D52909F2B04A6C%21sc87ce336ceaa46be8dd4a49f9792b4bf&cid=60D52909F2B04A6C&sb=name&sd=1) (provided by the NeRF² authors)
|
| 73 |
+
- **Original repo:** https://github.com/XPengZhao/NeRF2
|
| 74 |
+
- **Setup:** receiver fixed at 915 MHz with a 4×4 antenna array; an RFID-tag transmitter is placed at 6,123 distinct locations, each producing a spatial-spectrum image.
|
| 75 |
+
- **Citation:**
|
| 76 |
+
> Zhao, X., An, Z., Pan, Q., & Yang, L. (2023). NeRF²: Neural Radio-Frequency Radiance Fields. *MobiCom 2023*.
|
| 77 |
+
|
| 78 |
+
We use this dataset as-is — no preprocessing changes — and report results in the paper's RFID section.
|
| 79 |
+
|
| 80 |
+
---
|
| 81 |
+
|
| 82 |
+
## 3. Argos Massive-MIMO CSI Dataset (external)
|
| 83 |
+
|
| 84 |
+
Real-world outdoor CSI dataset from the **Argos** massive-MIMO platform.
|
| 85 |
+
|
| 86 |
+
- **Download:** [OneDrive link](https://onedrive.live.com/?redeem=aHR0cHM6Ly8xZHJ2Lm1zL2YvYy82MGQ1MjkwOWYyYjA0YTZjL0V0Z0h1QzR0NnhwRm8xdHNYemdRUWZjQmdveXJnWmtrVndmOXdjWDhxeEpzalE%5FZT1oTWVFWFE&id=60D52909F2B04A6C%21s824372ce9ef9412b8647c4a8c3272508&cid=60D52909F2B04A6C&sb=name&sd=1) (mirrored on the NeRF² authors' OneDrive)
|
| 87 |
+
- **Original source:** https://renew.rice.edu/dataset-argos.html
|
| 88 |
+
- **Setup:** 64-antenna base station at 2.4 GHz; 4,000 user positions; complex CSI on 26 subcarriers.
|
| 89 |
+
- **Citation:**
|
| 90 |
+
> Shepard, C., Yu, H., & Zhong, L. (2016). Understanding the Argos clean-slate massive MIMO platform. *Rice University Technical Report*.
|
| 91 |
+
|
| 92 |
+
For our experiments we follow the FIRE preprocessing (Liu et al., 2021) to obtain 3D receiver positions from the uplink measurements.
|
| 93 |
+
|
| 94 |
+
---
|
| 95 |
+
|
| 96 |
+
## License
|
| 97 |
+
|
| 98 |
+
- The **Sionna conference-room dataset** (this repo) is released under **CC-BY-4.0**.
|
| 99 |
+
- The **RFID** and **Argos** datasets are governed by their respective original licenses — please refer to the source links above.
|
| 100 |
+
|
| 101 |
+
## Citation
|
| 102 |
+
|
| 103 |
+
If you use any of these datasets together with GSpaRC, please cite:
|
| 104 |
+
|
| 105 |
+
```bibtex
|
| 106 |
+
@article{nukapotula2026gsparc,
|
| 107 |
+
title = {GSpaRC: Gaussian Splatting for Real-time Reconstruction of RF Channels},
|
| 108 |
+
author = {Nukapotula, Bhavya Sai and Tripathi, Rishabh and Pregler, Seth and Kalathil, Dileep and Shakkottai, Srinivas and Rappaport, Tedd},
|
| 109 |
+
journal = {arXiv preprint arXiv:2511.22793},
|
| 110 |
+
year = {2026}
|
| 111 |
+
}
|
| 112 |
+
```
|