--- license: cc-by-nc-4.0 task_categories: - tabular-regression - feature-extraction language: - en tags: - qiskit - quantum-circuits - synthetic-dataset - benchmark - expectation-values - quantum-computing - qml-benchmark - quantum dataset - qml dataset - quantum benchmark - noisy quantum data - thermal relaxation - T1 T2 noise - error mitigation - noise robustness pretty_name: QSBench Thermal Relaxation Demo v1.0.0 – Noisy Quantum Dataset (T1/T2 Thermal Noise, n=8) size_categories: - 1K = 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) | Group | Column Name | What is it for ML? | |----------------|------------------------------|--------------------| | **Features (X)** | `adjacency` | Graph structure — dense graphs lose coherence faster | | **Features (X)** | `qasm_transpiled` | Hardware-specific compiled circuit (NLP feature) | | **Features (X)** | `single_qubit_gates`, `two_qubit_gates` | Operation counts | | **Target (y)** | `error_Z_global`, `error_X_global` | Continuous regression targets (relaxation loss) | | **Physics** | `meyer_wallach` | Entanglement 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](https://huggingface.co/datasets/QSBench/QSBench-Thermal-Demo-v1.0.0/tree/metadata) ### Related QSBench Datasets - [Core Pack (2k samples)](https://huggingface.co/datasets/QSBench/QSBench-Core-v1.0.0-demo) - [Depolarizing Pack (5k samples)](https://huggingface.co/datasets/QSBench/QSBench-Depolarizing-Demo-v1.0.0) - [Amplitude Damping Pack (5k samples)](https://huggingface.co/datasets/QSBench/QSBench-Amplitude-v1.0.0-demo) - [Transpilation Pack (5k samples)](https://huggingface.co/datasets/QSBench/QSBench-Transpilation-v1.0.0-demo) - [Realistic hardware-mimic (2k samples)](https://huggingface.co/datasets/QSBench/QSBench-Device-Demo-v1.0.0) - [Readout Error (2k samples)](https://huggingface.co/datasets/QSBench/QSBench-Readout-Demo-v1.0.0) ### 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](https://qsbench.github.io/). ### 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](https://qsbench.github.io/) or open an issue on [GitHub](https://github.com/QSBench/QSBench-Thermal-Demo-v1.0.0). **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*