CoolFace
Datasetpublic

QSBench/QSBench-Thermal-Demo-v1.0.0

🌐 Website | πŸ€— Dataset | πŸ› οΈ GitHub | πŸš€ Interactive Demo QSBench Thermal Relaxation Demo v1.0.0 Quantum Machine Learning dataset for realistic noise robustness and sim-to-real research.Includes paired ideal and noisy expectation values under thermal relaxation (T1/T2) noise β€” the most physically relevant noise model on current quantum hardware. 2048 high-quality synthetic quantum circuits with thermal relaxation noise β€” demo subset of the QSBench Noise Pack. Designed for… See the full description on the dataset page: https://huggingface.co/datasets/QSBench/QSBench-Thermal-Demo-v1.0.0.

sourceHugging Facecc-by-nc-4.0updated 4mo agoView on Hugging Face
0likes133downloads
Dataset Card

QSBench Logo 🌐 Website | πŸ€— Dataset | πŸ› οΈ GitHub | πŸš€ Interactive Demo

QSBench Thermal Relaxation Demo v1.0.0

Quantum Machine Learning dataset for realistic noise robustness and sim-to-real research. Includes paired ideal and noisy expectation values under thermal relaxation (T1/T2) noise β€” the most physically relevant noise model on current quantum hardware.

2048 high-quality synthetic quantum circuits with thermal relaxation noise β€” demo subset of the QSBench Noise Pack.

Designed for researchers and engineers working on noise-aware quantum ML, decoherence analysis, and error mitigation.

Why this dataset?

Real quantum hardware is dominated by energy relaxation (T1) and dephasing (T2). Thermal relaxation is the standard model used by IBM, Google, IonQ and most superconducting platforms. This dataset allows you to:

  • β€”Study realistic T1/T2 decoherence effects
  • β€”Train models that predict or mitigate relaxation-induced errors
  • β€”Benchmark robustness under physically accurate noise
  • β€”Explore sim-to-real transfer on 8-qubit circuits

Use Cases

  • β€”Noise robustness benchmarking (T1/T2)
  • β€”Error mitigation research (especially relaxation errors)
  • β€”Predicting noisy expectation values
  • β€”Learning error correction models
  • β€”Feature engineering for decoherence-aware quantum ML

Dataset Overview

  • β€”Samples: 2048
  • β€”Qubits: 8
  • β€”Depth: 6
  • β€”Circuit Families: Mixed (HEA, RealAmplitudes, QFT, Efficient SU(2), Random)
  • β€”Entanglement: Full
  • β€”Noise: Thermal Relaxation (T1 = 50 ΞΌs, T2 = 30 ΞΌs)
  • β€”Observables: Z, X, Y in mixed mode (global + per-qubit)
  • β€”Shots: 1024
  • β€”Splits: Train / Validation / Test β€” deterministic hash-based

What's Inside Each Sample

Each sample in the Parquet files contains:

  • β€”Raw and transpiled QASM representations
  • β€”Circuit adjacency matrix
  • β€”Gate statistics (CX, H, RX, RY, RZ, etc.)
  • β€”Structural metrics: Gate entropy + Meyer-Wallach entanglement
  • β€”Ideal expectation values
  • β€”Noisy expectation values (after thermal relaxation)
  • β€”Explicit error targets: error_<label> = ideal - noisy
  • β€”Circuit metadata and generation parameters
  • β€”Deterministic split label

Key Learning Signals

For every observable, the dataset provides: ideal_expval_*, noisy_expval_*, error_*, sign_ideal_*, sign_noisy_*. This supports both high-precision regression and classification tasks for realistic noise modeling.

QSBench-Thermal: Realistic Decoherence Modeling

You don't need a PhD in Quantum Physics to use this dataset. This dataset represents the dominant noise channel on today's quantum processors β€” thermal relaxation. It behaves like gradual "battery drain" of quantum information over time.

The ML Mission: Complex Tabular Regression

Unlike symmetric depolarizing noise, thermal relaxation is biased and time-dependent. Your mission is to build a predictive model that understands how circuit structure (adjacency, gate counts, entanglement) influences T1/T2 decay rates.

Dataset Anatomy (Features & Targets)

GroupColumn NameWhat is it for ML?
Features (X)adjacencyGraph structure β€” dense graphs lose coherence faster
Features (X)qasm_transpiledHardware-specific compiled circuit (NLP feature)
Features (X)single_qubit_gates, two_qubit_gatesOperation counts
Target (y)error_Z_global, error_X_globalContinuous regression targets (relaxation loss)
Physicsmeyer_wallachEntanglement measure β€” does high entanglement decay faster?

Quick Start Idea

Compare feature importances. Does meyer_wallach or two_qubit_gates matter more when predicting thermal relaxation errors?

Load the Dataset

python
from datasets import load_dataset

# Load the thermal relaxation demo dataset
dataset = load_dataset("QSBench/QSBench-Thermal-Demo-v1.0.0", split="train")

# Inspect the first sample
print(dataset[0])

Repository Structure

The dataset is stored in the main branch and contains only the data files:

text
QSBench-Thermal-Demo-v1.0.0/
β”œβ”€β”€ README.md
└── data/
    └── shards/
        └── *.parquet
        └── *.csv

All metadata files (meta.json, schema.json, coverage.json, etc.) are in the metadata branch. πŸ‘‰ browse metadata branch

Related QSBench Datasets

Part of the QSBench Family

This is a small public demo version. Full-scale datasets (20k–150k+ samples), specialized noisy versions, and custom hardware packs are available on the QSBench website.

Notes

  • β€”Fully synthetic dataset generated with Qiskit Aer
  • β€”No real-world or personal data
  • β€”License: CC BY-NC 4.0 (Personal & Research Use)

Questions or custom requests? Visit QSBench website or open an issue on GitHub.

Email: QSBench@gmail.com

Support QSBench

You can support the project directly on this Giveth page: [https://giveth.io/project/qsbench](https://giveth.io/project/qsbench)

Your donations help us generate larger datasets, cover GPU costs, and continue developing new realistic noise models.


Generated with QSBench Generator v5.1.0