CoolFace
Datasetpublic

QSBench/QSBench-Amplitude-v1.0.0-demo

🌐 Website | πŸ€— Dataset | πŸ› οΈ GitHub | πŸš€ Interactive Demo QSBench Amplitude Damping Demo v1.0.0 Quantum Machine Learning dataset for noise robustness and error prediction. Includes paired ideal and noisy expectation values under amplitude damping noise models. Keywords: quantum dataset, noisy quantum circuits, amplitude damping, relaxation noise, QML benchmark, expectation value prediction. 5000 high-quality synthetic quantum circuits with amplitude damping β€” demo subset of the… See the full description on the dataset page: https://huggingface.co/datasets/QSBench/QSBench-Amplitude-v1.0.0-demo.

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

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

QSBench Amplitude Damping Demo v1.0.0

Quantum Machine Learning dataset for noise robustness and error prediction. Includes paired ideal and noisy expectation values under amplitude damping noise models.

Keywords: quantum dataset, noisy quantum circuits, amplitude damping, relaxation noise, QML benchmark, expectation value prediction.

5000 high-quality synthetic quantum circuits with amplitude damping β€” demo subset of the QSBench Noise Pack.

Designed for researchers and engineers working on noise-aware quantum ML, energy relaxation analysis ($T_1$ effects), and error mitigation.

Why this dataset?

Real quantum hardware suffers from energy relaxation. Amplitude damping is the standard model for describing the transition from an excited state to the ground state. This dataset allows you to:

  • β€”Compare ideal vs noisy outputs under relaxation effects
  • β€”Train models that predict or correct decay-related errors
  • β€”Benchmark robustness of ML models on 8-qubit circuits
  • β€”Study error distributions in deeper quantum circuits (depth=6)

Use Cases

  • β€”Noise robustness benchmarking
  • β€”Error mitigation research (specifically for $T_1$ relaxation)
  • β€”Predicting noisy expectation values
  • β€”Learning error correction models
  • β€”Feature engineering for noisy quantum states

Dataset Overview

  • β€”Samples: 5000
  • β€”Qubits: 8
  • β€”Depth: 6
  • β€”Circuit Families: Mixed (HEA, RealAmplitudes, QFT, Efficient SU(2), Random)
  • β€”Entanglement: Full
  • β€”Noise: Amplitude Damping ($p = 0.012$)
  • β€”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 amplitude damping)
  • β€”Explicit error targets: error_<label> = ideal - noisy
  • β€”Circuit metadata and generation parameters (depth=6, n=8)
  • β€”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 noise modeling.

QSBench-Amplitude: Asymmetric Noise Prediction

You don't need a PhD in Quantum Physics to use this dataset. This dataset represents a specific type of hardware degradation (Amplitude Damping), similar to battery drain or signal loss over time.

The ML Mission: Complex Tabular Regression

Unlike simple symmetric noise, Amplitude Damping affects the system in a biased way. Your mission is to build a predictive model that understands how specific topological structures (e.g., dense adjacency graphs) exacerbate this specific type of signal loss.

Dataset Anatomy (Features & Targets)

GroupColumn NameWhat is it for ML?
Features (X)adjacencyThe graph structure. Dense graphs decay differently than sparse ones.
Features (X)qasm_transpiledThe hardware-specific compiled code (NLP feature).
Features (X)single_qubit_gates, two_qubit_gatesThe operation counts.
Target (y)error_Z_global, error_X_globalContinuous regression targets representing the signal loss.
Physicsmeyer_wallachA measure of entanglement. Does highly entangled data decay faster?

Quick Start Idea

Compare feature importances. Does depth matter more than the number of two_qubit_gates when predicting Amplitude Damping errors?

Load the Dataset

The dataset is stored in Parquet format inside the data/shards/ folder. You can load it directly using the Hugging Face datasets library:

python
from datasets import load_dataset

# Load the amplitude damping demo dataset
dataset = load_dataset("QSBench/QSBench-Amplitude-v1.0.0-demo", split="train")

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

If you prefer to use pandas:

python
import pandas as pd

# Load all Parquet shards from the data folder
df = pd.read_parquet("data/shards/*.parquet")
print(df[["ideal_expval_Z_global", "noisy_expval_Z_global", "error_Z_global"]].head())

Repository Structure

The dataset is stored in the main branch and contains only the data files to ensure the Dataset Viewer works correctly:

text
QSBench-Amplitude-v1.0.0-demo/
β”œβ”€β”€ README.md # This file
└── data/ # Parquet and CSV shards
    └── shards/
        └── *.parquet
        └── *.csv

All metadata files (coverage.json, schema.json, meta.json, etc.) are located in a separate branch called meta.

πŸ‘‰ browse meta 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.

Website & Full Catalog

Email: QSBench@gmail.com

Notes

This dataset is fully synthetic and generated using quantum circuit simulation. No real-world or personal data is included.

License: CC BY-NC 4.0 (Personal & Research Use)

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

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.0.2