Views
No views yet


| Run | Qubits | Samples | Shots | Iterations | Final Loss | QPU Time |
|---|---|---|---|---|---|---|
| 1 | 96 | 16 | 256 | 8 | 0.29 | ~2 min |
| 2 | 96 | 24 | 384 | 12 | 0.2704 | ~7 min |
Nighthawk.npy — trained parameters (72 values)qcnn.qasm — QASM3 description of the ansatz (parameter-free)results.csv — final training metricstraining_log.txt — full log of loss evaluations and transpilationrequirements.txt — dependencies for reproduction
1from qiskit import qasm3
2import numpy as np
3
4# Load model
5theta = np.load("Nighthawk.npy")
6qcnn = qasm3.loads(open("qcnn.qasm").read())
7qcnn.assign_parameters(theta)
8
9print("Model loaded. Number of parameters:", len(theta))
10# Next: compose with preparation circuit + run via Sampler