Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

Dataset Card — Site-Specific MIMO Channel Generation via Diffusion and Flow Matching: Fidelity, Efficiency, and Downstream Utility

Link to paper (to be updated): [TBC]

Authors: Sina Beyraghi, Masoud Sadeghian, Firdous Bin Ismail, Angel Lozano, Paul Almasan, and Giovanni Geraci

Contact: Sina Beyraghi ([email protected]), Paul Almasan

Abstract

This paper explores the use of generative models to synthesize high-quality, site-specific multiple-input multiple-output (MIMO) channel data, addressing the high cost of the extensive measurement campaigns required to acquire real-world data for AI-native wireless networks. Two location-conditioned generative paradigms are compared: a conditional denoising diffusion implicit model (cDDIM), and a conditional flow matching model (cFMM). Both these models generate MIMO channel matrices conditioned on user coordinates, to preserve the spatial structure of the deployment site. The approaches are evaluated across three dimensions: statistical fidelity (including beam consistency and effective rank), generation efficiency, and utility in downstream tasks such as channel-state information compression and beam alignment. Results across diverse propagation scenarios (28 GHz and 3.5 GHz, both line-of-sight and non-line-of-sight) demonstrate that both models accurately capture site-specific characteristics, even when trained on scarce ground-truth data. Notably, cFMM achieves a quality comparable to cDDIM with roughly an order of magnitude less inference time. Augmenting scarce site-specific datasets with these synthetic channels yields hefty performance gains in downstream physical layer tasks compared to using scarce data alone or stochastic channels.


Files

File Frequency Scenario Size
Final_Single_Scene_Channel_Sionna_V1_3_5GHz_LoS.npz 3.5 GHz LoS only
Final_Single_Scene_Channel_Sionna_V1_3_5GHz_NLoS.npz 3.5 GHz NLoS only
Final_Single_Scene_Channel_Sionna_V1_28GHz_LoS.npz 28 GHz LoS only

Data format

Each .npz file contains a single array under the key combined_array:

shape: (N, N_rx, 1, N_tx, 1, 1, 4)
dtype: complex64

last dimension:
  [0] — complex channel coefficient H
  [1] — UE x-coordinate (metres)
  [2] — UE y-coordinate (metres)
  [3] — UE z-coordinate (metres)

To extract the channel matrix and UE coordinates from a file:

import numpy as np

npz = np.load("Final_Single_Scene_Channel_Sionna_V1_3_5GHz_LoS.npz")
data = npz["combined_array"][:, :, 0, :, 0, 0, :]  # (N, N_rx, N_tx, 4)

H      = data[:, :, :, 0]   # complex channel matrices, shape (N, N_rx, N_tx)
coords = data[:, 0, 0, 1:]  # UE (x, y, z) positions,  shape (N, 3)

Generation

The datasets were generated with NVIDIA Sionna RT, a GPU-accelerated ray tracing engine for wireless channel simulation, over a single outdoor urban scene. Generation scripts and instructions are available in the code repository.


Downloading

git clone https://huggingface.co/datasets/PaulAlm/GenAI_Channel_Modeling_Datasets

Due to file size this may take several minutes. Individual files can also be downloaded manually from the Hugging Face web interface.


Related resources


Citation

TBC.

Downloads last month
80