Datasets:
case_type stringclasses 2
values | split_name stringclasses 1
value | total_samples int64 707 846 | train_size int64 494 592 | val_size int64 106 126 | test_size int64 107 128 | train_ratio float64 0.7 0.7 | val_ratio float64 0.15 0.15 | test_ratio float64 0.15 0.15 | splits dict |
|---|---|---|---|---|---|---|---|---|---|
hohlraum | default | 846 | 592 | 126 | 128 | 0.699764 | 0.148936 | 0.1513 | {
"train": [
"hohlraum_variable_cl0.0075_q6_ulr0.3_llr-0.4_urr0.4_lrr-0.3_hlr-0.6_hrr0.5_cx0.1_cy-0.075",
"hohlraum_variable_cl0.0075_q6_ulr0.3_llr-0.5_urr0.4_lrr-0.3_hlr-0.6_hrr0.63_cx0.0_cy-0.075",
"hohlraum_variable_cl0.0075_q6_ulr0.4_llr-0.5_urr0.3_lrr-0.4_hlr-0.63_hrr0.6_cx0.0_cy-0.075",
"hohlrau... |
lattice | default | 707 | 494 | 106 | 107 | 0.698727 | 0.149929 | 0.151344 | {
"train": [
"lattice_abs52.5_scatter4.6_p0.015_q6",
"lattice_abs97.5_scatter7.1_p0.015_q6",
"lattice_abs82.5_scatter4.6_p0.015_q6",
"lattice_abs90.0_scatter8.1_p0.015_q6",
"lattice_abs80.0_scatter0.1_p0.015_q6",
"lattice_abs55.0_scatter9.1_p0.015_q6",
"lattice_abs80.0_scatter4.1_p0.015_q6... |
Dataset Description:
A surrogate-modeling dataset for the 2-D linear Radiation Transport Equation (RTE), covering two canonical benchmarks that vary along complementary axes:
Lattice (707 samples, 494 train / 106 val / 107 test) — fixed
7 × 7block geometry; per-sample variation in the white-background scattering coefficient and the blue-absorber cross- section drawn from a discrete design grid (see § Data generation). QoI: final-time absorption integral over the absorbing blocks.Hohlraum (846 samples, 592 train / 126 val / 128 test) — fixed per-region cross-sections; per-sample variation in 8 geometry parameters (
ulr, llr, urr, lrr, hlr, hrr, cx, cy) controlling the inner edges and y-extents of two wall-anchored red strips and the (x, y) offset of a center insert (see § Data generation). QoI: final-time absorption integral evaluated over three material regions .
The dataset contains initial and final timesteps.
Data generation
Simulations were produced with KiT-RT using
a discrete-ordinate (S_N) angular discretization, a finite-volume scheme
on an unstructured mesh, and an explicit SSP Runge-Kutta time integrator,
then curated into the PhysicsNeMo Mesh memmap format. Both benchmarks
sweep their per-sample parameters over a discrete design grid rather
than continuous uniform random sampling.
Lattice. The design set is the full Cartesian product of and , with spacings 2.5 and 0.5 respectively, giving 800 unique parameter configurations. Of these, 707 yielded complete and valid simulations.
Hohlraum. The full design set contains configurations formed from three prescribed values for each of the eight geometry parameters:
| Parameter family | Values |
|---|---|
Top red-strip edges (ulr, urr) |
|
Bottom red-strip edges (llr, lrr) |
|
Right interior red-strip edge (hrr) |
|
Left interior red-strip edge (hlr) |
|
Capsule center (cx, cy) |
From this grid, 1000 configurations were sampled uniformly at random without replacement, yielding 846 complete and valid simulations. Incomplete runs were mainly due to scheduling, timeouts, or other infrastructure failures rather than known simulation-code failures.
How to download
The dataset is not a datasets-loadable Parquet dataset; it ships
PhysicsNeMo tensordict memmap stores packed as one tarball per
benchmark (mesh/lattice.tar.gz, mesh/hohlraum.tar.gz). Download
the full repo and extract both tarballs in place:
import tarfile
from pathlib import Path
from huggingface_hub import snapshot_download
local_dir = Path(snapshot_download(
repo_id="nvidia/Linear-Radiation-Transport",
repo_type="dataset",
local_dir="./rte", # or omit to use the HF cache
))
for arc in (local_dir / "mesh").glob("*.tar.gz"):
with tarfile.open(arc) as tf:
tf.extractall(arc.parent, filter="data")
After extraction you'll have mesh/lattice/<name>.pmsh/ and
mesh/hohlraum/<name>.pmsh/ directories, each loadable with PhysicsNeMo's
Mesh API alongside the matching <name>.attrs.json sidecar.
Dataset Owner(s):
NVIDIA Corporation
Dataset Creation Date:
May 2026
License/Terms of Use:
Intended Usage:
Training, evaluation, and benchmarking of point-cloud / mesh-based neural surrogates for final-time linear radiation transport. The two benchmarks are complementary stress tests: Lattice probes the surrogate's ability to generalise across material parameters at fixed geometry, while Hohlraum probes generalisation across geometry at fixed material parameters. Suitable for graph neural networks, neural operators, point-cloud regressors, and mixed-fidelity / uncertainty-quantification studies that build on KiT-RT reference solutions.
Dataset Characterization
** Data Collection Method
- [Synthetic] - High-resolution KiT-RT (S_N + finite-volume) simulations
on unstructured triangular meshes, post-processed into PhysicsNeMo
Meshmemmap stores.
** Labeling Method
- [Synthetic] - Per-cell scalar flux and derived per-region absorption
QoIs are computed directly by the numerical solver; no human labeling
is involved.
Dataset Format
- Modality: 2-D point cloud / unstructured-mesh, per-cell tensors plus per-simulation scalar metadata.
- Per-sample container: PhysicsNeMo
Mesh(a tensordict memmap store) shipped on disk as a<name>.pmsh/directory plus a<name>.attrs.jsonsidecar. - On-Hub packing: one
tar.gzper benchmark (mesh/lattice.tar.gz,mesh/hohlraum.tar.gz). Each archive contains a top-level<bench>/directory holding all of that benchmark's<name>.pmsh/+<name>.attrs.jsonfiles. This keeps the file count low for fast, rate-limit-friendly downloads. - Per-cell fields:
cell_areas(float32),sigma_a,sigma_s,sigma_t(float32),Q(float32),material_properties(int64),scalar_flux(float32, shape(N, 2)for initial + final snapshots). - Cell-center coordinates:
Mesh.points(float32,(N, 2)— the simulations are 2-D so points are stored without a z column). - Per-simulation fields (
Mesh.global_data):sim_times/timesteps/wall_times,flux_statistics,global_metrics, plus flattenedattr__*parameter draws. - Splits: full train/val/test splits at
splits/{lattice,hohlraum}_splits.json. - Stats: per-field flux and material-property normalization stats at
stats/{lattice,hohlraum}_{flux,material}_stats.yaml. - Auxiliary: PNG schematics under
docs/images/.
Dataset Quantification
- Record count: 1,553 simulations covered by the train/val/test splits (707 Lattice + 846 Hohlraum).
- Cells per sample: lattice ≈79.9k (constant); hohlraum ≈70k–81k.
- Per-cell features per sample: 7 fields (cell_areas, sigma_a, sigma_s, sigma_t, Q, material_properties, scalar_flux) plus 2-D cell-center coordinates and per-simulation metadata.
- Total storage: ~7.2 GB for the extracted
.pmsh/directories; ~1.6 GB as the per-benchmarkmesh/{lattice,hohlraum}.tar.gzarchives shipped to the Hugging Face Hub (gzip-compressed).
Reference(s):
- Schotthöfer, S., & Hauck, C. (2025). "Reference solutions for linear radiation transport: the Hohlraum and Lattice benchmarks." arXiv preprint arXiv:2505.17284.
- Kusch, J., Schotthöfer, S., Stammer, P., Wolters, J., & Xiao, T. (2023). "KiT-RT: An extendable framework for radiative transfer and therapy." ACM Transactions on Mathematical Software, 49(4), 1–24.
- KiT-RT solver: https://github.com/KiT-RT.
Ethical Considerations:
NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal developer teams to ensure this dataset meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
Please report quality, risk, security vulnerabilities or NVIDIA AI Concerns here.
- Downloads last month
- 106

