File size: 5,499 Bytes
9bc0c11
a20964c
0ed7947
 
 
 
 
 
 
 
 
 
 
 
 
9bc0c11
 
7e82dda
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
95e6c86
3318c48
95e6c86
 
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
 
 
 
 
 
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
 
 
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
 
9bc0c11
0ed7947
 
 
 
 
9bc0c11
 
0ed7947
9bc0c11
0ed7947
9bc0c11
 
 
 
0ed7947
 
9bc0c11
 
0ed7947
9bc0c11
0ed7947
9bc0c11
0ed7947
9bc0c11
 
0ed7947
 
9bc0c11
0ed7947
 
9bc0c11
0ed7947
 
9bc0c11
0ed7947
 
 
9bc0c11
0ed7947
 
 
9bc0c11
 
0ed7947
9bc0c11
0ed7947
 
9bc0c11
0ed7947
 
9bc0c11
 
 
 
 
0ed7947
9bc0c11
0ed7947
9bc0c11
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
---
pretty_name: "IBM-QML-Kernel Branch-Transfer Benchmarks (ibm-qml-kernel)"
license: mit
tags:
  - quantum-computing
  - ibm-quantum
  - qiskit
  - superconducting-qubits
  - reproducibility
  - benchmarks
  - wigners-friend
task_categories:
  - other
size_categories:
  - n<1K
---

# IBM-QML-Kernel Branch-Transfer Benchmarks (ibm-qml-kernel)

## Dataset Summary

This dataset is the **reproducibility artifact bundle** corresponding to the arXiv submission:

**“Wigner's Friend as a Circuit: Inter-Branch Communication Witness Benchmarks on Superconducting Quantum Hardware.”**  

- GitHub release checkpoint: [v1.0-wigner-branch-benchmark](https://github.com/christopher-altman/ibm-qml-kernel/releases/tag/v1.0-wigner-branch-benchmark)
- Paper page: https://huggingface.co/papers/2601.16004
- GitHub: https://github.com/christopher-altman/ibm-qml-kernel

It snapshots the experimental and simulation outputs for a **five‑qubit “branch‑transfer / message‑transfer” circuit primitive** (message transfer in the *compiled circuit / measurement record* sense, not physical signaling), executed on **IBM Quantum hardware** and mirrored with **backend‑matched noisy simulations**.

## What’s inside (high level)

The release is designed as a “stable, citeable checkpoint” and includes, at minimum:

- **Hardware execution** on IBM Quantum `ibm_fez` (N = 20,000 shots).  
- **Coherence-sensitive witness evaluation** (X and Y bases) + a **visibility baseline**.  
- **Backend-matched noisy simulations** using calibration-synchronized noise models.  
- **Execution provenance**: IBM Quantum job IDs + backend calibration snapshots.  
- **Deterministic figure regeneration** from archived artifacts.  
- **Tamper-evident manifest**: SHA256 hashes for bundle files.  

(See the GitHub release notes for the canonical inventory.)

## Intended Use

This dataset is for:

- Reproducing figures/tables/values from the associated paper.
- Auditing compilation + noise impacts on the reported witnesses.
- Serving as a reference artifact for future “branch-transfer / inter-branch witness” benchmark runs on other devices/backends.

Not intended for: training NLP/Vision models. It’s an experiment + provenance bundle.

## How to Use

### Option A — download the full artifact snapshot (recommended for exact reproduction)

For non-tabular artifacts (plots, calibration dumps, intermediate files), the most faithful workflow is to download the full repository snapshot:

```python
from huggingface_hub import snapshot_download

local_dir = snapshot_download(
    repo_id="Cohaerence/wigner-friend-v2b",
    repo_type="dataset",
)
print(local_dir)
```

### Option B — `datasets.load_dataset(...)` (best if files are extracted + structured)

Hugging Face Datasets works best when the dataset includes common formats like `csv`, `jsonl`, or `parquet`, optionally referenced via `data_files=`.

```python
from datasets import load_dataset

ds = load_dataset("Cohaerence/wigner-friend-v2b")
print(ds)
```

Docs: https://huggingface.co/docs/datasets/loading

## Reproduction Quickstart (paper-aligned)

These commands reflect the intended “paper-aligned” reproduction workflow described in the release notes:

```bash
# Verify IBM Quantum connectivity
python -c "from qiskit_ibm_runtime import QiskitRuntimeService as S; s=S(); bs=s.backends(simulator=False, operational=True); print('n_backends=', len(bs))"

# Hardware coherence witness (X + Y bases)
python -m experiments.branch_transfer.run_ibm   --backend ibm_fez --mode coherence_witness   --include-y-basis --shots 20000 --optimization-level 2

# Hardware visibility (rp_z mode)
python -m experiments.branch_transfer.run_ibm   --backend ibm_fez --mode rp_z --mu 1   --shots 20000 --optimization-level 2

# Backend-matched noisy simulations
python -m experiments.branch_transfer.run_sim   --mode coherence_witness --include-y-basis --mu 1   --shots 20000 --noise-from-backend ibm_fez
python -m experiments.branch_transfer.run_sim   --mode rp_z --mu 1 --shots 20000   --noise-from-backend ibm_fez

# Generate analysis figures
python -m experiments.branch_transfer.analyze   --artifacts-dir artifacts/branch_transfer   --figures-dir artifacts/branch_transfer/figures --plot-all
```


## Citations

- arXiv:2601.16004 — “Wigner's Friend as a Circuit: Inter-Branch Communication Witness Benchmarks on Superconducting Quantum Hardware.”  
  https://arxiv.org/abs/2601.16004

- Code + artifact checkpoint: GitHub release tag `v1.0-wigner-branch-benchmark`.  
  https://github.com/christopher-altman/ibm-qml-kernel/releases/tag/v1.0-wigner-branch-benchmark

---

## References

1. Violaris, M. (2026). Quantum observers can communicate across multiverse branches. *arXiv:2601.08102*. [arXiv:2601.08102](https://arxiv.org/abs/2601.08102)

2. Mukherjee, S. and Hance, J. Limits of absoluteness of observed events in timelike scenarios: A no-go theorem, *arXiv:2510.26562*. [arXiv:2510.26562](https://arxiv.org/abs/2510.26562)


---

## License

MIT License. See [LICENSE](LICENSE) for details.

---

## Contact

- **Website:** [christopheraltman.com](https://christopheraltman.com)
- **Research portfolio:** https://lab.christopheraltman.com/
- **GitHub:** [github.com/christopher-altman](https://github.com/christopher-altman)
- **Google Scholar:** [scholar.google.com/citations?user=tvwpCcgAAAAJ](https://scholar.google.com/citations?user=tvwpCcgAAAAJ)
- **Email:** x@christopheraltman.com

---

*Christopher Altman (2026)*