QSBench commited on
Commit
feb2187
·
verified ·
1 Parent(s): 11d3006

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +131 -3
README.md CHANGED
@@ -1,3 +1,131 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - tabular-regression
5
+ - feature-extraction
6
+ language:
7
+ - en
8
+ tags:
9
+ - qiskit
10
+ - quantum-circuits
11
+ - synthetic-dataset
12
+ - benchmark
13
+ - expectation-values
14
+ - quantum-computing
15
+ - qml-benchmark
16
+ - quantum dataset
17
+ - qml dataset
18
+ - quantum benchmark
19
+ - noisy quantum data
20
+ - device noise
21
+ - hardware-mimic
22
+ - thermal relaxation
23
+ - error mitigation
24
+ - noise robustness
25
+ pretty_name: QSBench Device Demo v1.0.0 – Realistic Device-like Noise (GenericBackendV2, n=10)
26
+ size_categories:
27
+ - 1K<n<10K
28
+ ---
29
+ ![QSBench Logo](https://i.imgur.com/VyLgYtf.png)
30
+ 🌐 [Website](https://qsbench.github.io) | 🤗 [Dataset](https://huggingface.co/datasets/QSBench/QSBench-Device-Demo-v1.0.0) | 🛠️ [GitHub](https://github.com/QSBench/QSBench-Device-Demo-v1.0.0) | 🚀 [Interactive Demo](https://huggingface.co/QSBench/spaces)
31
+
32
+ # QSBench Device Demo v1.0.0
33
+
34
+ **Realistic hardware-mimic quantum dataset** — the most physically accurate noise demo in the QSBench family.
35
+
36
+ This release uses `device` noise model based on `GenericBackendV2`, which simulates a full set of realistic hardware errors (T1/T2 relaxation, gate errors, readout errors, and crosstalk-like effects).
37
+
38
+ **2048 high-quality synthetic quantum circuits with realistic device-like noise.**
39
+
40
+ Designed for researchers working on **sim-to-real transfer**, hardware-aware quantum ML, and benchmarking models under conditions closest to real quantum processors.
41
+
42
+ ### Why this dataset?
43
+ Most synthetic datasets use simplified noise (depolarizing or amplitude damping).
44
+ `Device` noise is much closer to what you see on actual IBM, Rigetti or IonQ hardware.
45
+ This dataset helps close the **sim-to-real gap**.
46
+
47
+ ### Use Cases
48
+ - Sim-to-real transfer learning
49
+ - Hardware-aware model benchmarking
50
+ - Testing robustness under realistic multi-source noise
51
+ - Error mitigation research (including crosstalk approximation)
52
+ - Comparing simplified noise vs real-device noise
53
+
54
+ ### Dataset Overview
55
+ - **Samples**: 2048
56
+ - **Qubits**: 10
57
+ - **Depth**: 8
58
+ - **Circuit Families**: Mixed (HEA, RealAmplitudes, QFT, Efficient SU(2), Random)
59
+ - **Entanglement**: Full
60
+ - **Noise**: `device` (GenericBackendV2 — realistic device-like noise)
61
+ - **Observables**: Z, X, Y in mixed mode (global + per-qubit)
62
+ - **Shots**: 1024
63
+ - **Splits**: Train / Validation / Test — deterministic hash-based
64
+
65
+ ### What's Inside Each Sample
66
+ - Raw and transpiled QASM
67
+ - Circuit adjacency matrix
68
+ - Detailed gate statistics
69
+ - Structural metrics (gate entropy, Meyer-Wallach entanglement)
70
+ - **Ideal expectation values**
71
+ - **Noisy expectation values** (after realistic device noise)
72
+ - **Error targets**: `error_<label>`
73
+ - Full generation metadata
74
+
75
+ ### Key Advantage
76
+ Unlike single-channel noise models, `device` noise combines multiple realistic error sources simultaneously — exactly what happens on real quantum hardware.
77
+
78
+ ### Load the Dataset
79
+ ```python
80
+ from datasets import load_dataset
81
+
82
+ dataset = load_dataset("QSBench/QSBench-Device-Demo-v1.0.0", split="train")
83
+ print(dataset[0])
84
+ ```
85
+
86
+ Using pandas:
87
+
88
+ ```python
89
+ import pandas as pd
90
+ df = pd.read_parquet("data/shards/*.parquet")
91
+ print(df[["ideal_expval_Z_global", "noisy_expval_Z_global", "error_Z_global"]].head())
92
+ ```
93
+
94
+ ### Repository Structure
95
+
96
+ Data is stored in the `main` branch:
97
+
98
+ ```text
99
+ QSBench-Device-Demo-v1.0.0/
100
+ ├── README.md
101
+ └── data/
102
+ └── shards/
103
+ └── *.parquet
104
+ ```
105
+
106
+ Metadata files are available in the `metadata` branch.
107
+
108
+ ### Related QSBench Datasets
109
+
110
+ - [QSBench-Thermal-Demo-v1.0.0](https://huggingface.co/datasets/QSBench/QSBench-Thermal-Demo-v1.0.0)
111
+
112
+ - [QSBench-Amplitude-v1.0.0-demo](https://huggingface.co/datasets/QSBench/QSBench-Amplitude-v1.0.0-demo)
113
+
114
+ - [QSBench-Depolarizing-Demo-v1.0.0](https://huggingface.co/datasets/QSBench/QSBench-Depolarizing-Demo-v1.0.0)
115
+
116
+ - [QSBench-Core-v1.0.0-demo](https://huggingface.co/datasets/QSBench/QSBench-Core-v1.0.0-demo)
117
+
118
+ ### Part of the QSBench Family
119
+
120
+ This is a public demo version. Full-scale Device Noise Pack and other specialized releases are available via the [QSBench Generator](https://github.com/QSBench/QSBench-Generator).
121
+
122
+ ### Notes
123
+
124
+ - Fully synthetic, generated with Qiskit Aer + GenericBackendV2
125
+
126
+ - **License:** CC BY-NC 4.0 (Personal & Research Use)
127
+
128
+ **Questions or custom requests?** Visit [qsbench.github.io](https://qsbench.github.io/) or open an [issue on GitHub](https://github.com/QSBench/QSBench-Device-Demo-v1.0.0).
129
+
130
+ ---
131
+ *Generated with QSBench Generator v5.1.0*