Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
x
float64
-3
3
y
float64
-2
4
z
float64
0.3
1.2
-2.2803
0.9111
0.8695
1.9094
2.0982
0.7487
0.5208
2.3185
0.5326
2.8178
-0.2179
0.5591
-2.3028
-0.9096
0.7449
0.3946
-0.669
0.9907
0.4638
-0.9931
0.6307
-0.188
1.9256
1.0138
0.9784
1.6782
1.1918
-2.2831
-1.1086
1.0671
0.0572
-0.6964
1.1939
-1.1082
-0.4476
1.0283
-0.8779
0.8071
0.5468
1.7892
2.8848
1.1533
1.4798
0.5892
1.0995
2.6472
1.0181
0.9318
1.2393
0.8861
1.1643
-0.4439
-0.0628
0.9857
2.5958
2.2673
0.7657
2.3068
1.3218
0.8163
-0.6364
3.5593
0.305
1.371
0.1345
0.4916
-0.8278
3.2698
0.627
0.0192
2.6049
1.123
1.9582
0.4705
0.8678
-0.9485
0.2902
1.1662
0.8821
3.7471
1.0231
-1.6237
3.2752
0.8332
1.717
1.1929
1.1715
0.5939
-1.3606
0.6317
-1.7052
2.8433
1.0184
0.3272
3.3709
1.1362
2.8658
3.5063
0.336
1.3969
3.3782
1.054
0.2187
-0.0721
0.6575
-1.3354
3.6175
0.7174
2.1137
-0.7234
0.3001
-2.4426
-0.9493
0.7634
2.2799
2.7088
0.7768
-1.357
-1.8417
1.0827
-1.3474
-1.1287
0.7549
-0.9894
-1.0298
0.4974
0.7396
-0.2824
1.0315
0.2752
-1.8904
0.3145
2.6102
0.3435
1.1196
1.9168
-1.4578
0.6224
-2.8861
0.7002
0.3273
-1.3779
-1.9845
0.6904
-0.8254
3.2388
0.7365
1.4121
-0.8865
0.4189
-2.9402
0.2382
0.3097
2.0908
-0.541
0.912
1.0628
3.315
0.4382
2.6802
-0.2375
0.9629
-0.1468
-1.0108
1.0447
0.2382
0.125
1.0578
-2.8092
-1.5936
0.8654
0.8097
2.6184
0.6972
2.1508
0.29
1.1683
0.2351
0.5873
1.0044
-2.4147
-0.6422
1.0749
-1.3148
-1.2487
0.3668
-1.0449
2.542
0.6683
1.539
-0.3789
1.0796
2.844
2.5361
1.1527
-1.9003
3.9238
0.3364
-0.6287
1.5913
0.4354
-1.9533
-1.1079
0.3119
-2.9908
-1.7524
0.6831
2.7864
-0.9039
0.9705
-0.962
1.9066
0.877
-1.6614
2.5015
0.7087
-1.9461
-0.4699
0.9531
-0.6542
0.3195
0.9612
2.8413
-0.546
0.486
-0.4535
2.3076
1.0665
-0.8957
0.1798
0.6027
-0.5629
-1.6382
0.416
0.1112
3.3011
0.447
1.3684
-0.6926
1.0515
-2.3959
0.1929
0.8302
-0.1758
0.1953
1.1735
-1.3206
1.9993
0.3167
-1.7518
-1.8637
0.3481
-0.4072
-0.2753
0.5127
1.3622
-0.7747
0.4799
1.1452
-0.5026
0.4287
-2.2123
3.668
0.4928
1.0765
0.8434
0.817
-0.5021
-1.201
0.5976
-2.1335
3.0205
0.6717
-2.8213
3.1026
0.5075
2.4355
-0.1257
0.7206
2.7582
3.2075
0.4969
0.0751
-0.0388
1.0788
1.4732
0.1916
0.9741
1.8646
2.619
1.0161
-1.9422
1.6248
0.6049
2.5263
0.0554
0.8839
-1.7858
3.3784
1.0335
End of preview. Expand in Data Studio

GSpaRC Datasets

Datasets used in the paper "GSpaRC: Gaussian Splatting for Real-time Reconstruction of RF Channels".

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.


1. Sionna Conference-Room Dataset (hosted here)

Indoor spectrum dataset generated with the 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.

Files (under sionna_conference_room/):

File Description
spectrum/00001.npy05142.npy Per-position spatial spectrum (90 × 360 magnitude image, float32)
rx_pos.csv Receiver positions, columns: x, y, z (5,142 rows)
gateway_info.yml Transmitter position [0.0, 0.5, 3.0] and orientation quaternion

Splits used in the paper:

  • 3,599 training positions / 1,543 test positions (random split)

Scene: indoor conference room, 14 m × 10 m × 4 m, with tables, chairs, glass partitions and irregular wall materials, producing rich multipath.

Loading example

import numpy as np
import pandas as pd
import yaml

# Receiver positions
rx_pos = pd.read_csv("sionna_conference_room/rx_pos.csv")  # columns: x,y,z

# Transmitter
with open("sionna_conference_room/gateway_info.yml") as f:
    info = yaml.safe_load(f)
tx_pos = info["gateway1"]["position"]  # [0.0, 0.5, 3.0]

# Spectrum at the i-th receiver position
spec = np.load(f"sionna_conference_room/spectrum/{i:05d}.npy")  # (90, 360)

2. RFID Spectrum Dataset (external)

Real-world dataset originally released with the NeRF² paper.

  • Download: OneDrive link (provided by the NeRF² authors)
  • Original repo: https://github.com/XPengZhao/NeRF2
  • 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.
  • Citation:

    Zhao, X., An, Z., Pan, Q., & Yang, L. (2023). NeRF²: Neural Radio-Frequency Radiance Fields. MobiCom 2023.

We use this dataset as-is — no preprocessing changes — and report results in the paper's RFID section.


3. Argos Massive-MIMO CSI Dataset (external)

Real-world outdoor CSI dataset from the Argos massive-MIMO platform.

  • Download: OneDrive link (mirrored on the NeRF² authors' OneDrive)
  • Original source: https://renew.rice.edu/dataset-argos.html
  • Setup: 64-antenna base station at 2.4 GHz; 4,000 user positions; complex CSI on 26 subcarriers.
  • Citation:

    Shepard, C., Yu, H., & Zhong, L. (2016). Understanding the Argos clean-slate massive MIMO platform. Rice University Technical Report.

For our experiments we follow the FIRE preprocessing (Liu et al., 2021) to obtain 3D receiver positions from the uplink measurements.


License

  • The Sionna conference-room dataset (this repo) is released under CC-BY-4.0.
  • The RFID and Argos datasets are governed by their respective original licenses — please refer to the source links above.

Citation

If you use any of these datasets together with GSpaRC, please cite:

@article{nukapotula2026gsparc,
  title   = {GSpaRC: Gaussian Splatting for Real-time Reconstruction of RF Channels},
  author  = {Nukapotula, Bhavya Sai and Tripathi, Rishabh and Pregler, Seth and Kalathil, Dileep and Shakkottai, Srinivas and Rappaport, Tedd},
  journal = {arXiv preprint arXiv:2511.22793},
  year    = {2026}
}
Downloads last month
22

Paper for BhavyaN/gsparc-datasets