Relation between MeasurementResult
and the circuit conditions that originated it
#2043
-
Hi! In the Is this correct? Or am I missing that this information can be accessed in a different way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @EmilianoG-byte, Hint: If you are using ZNE, you can deduce the noise scale factor associated to a specific circuit Note also that, by default, Mitiq uses |
Beta Was this translation helpful? Give feedback.
Hi @EmilianoG-byte,
correct. There is no log of mitigation methods or similar hyper-parameters in
Executor
objects or inMeasurementResult
objects.Hint: If you are using ZNE, you can deduce the noise scale factor associated to a specific circuit$C_j$ in $n_j$ of gates in $C_j$ and comparing it to the number of gates of the unmitigated circuit $n_{unmitigated}$ . The scale factor is approximately given by $\lambda_j = n_j / n_{unmitigated}$ .
_executed_circuits
by evaluating the numberNote also that, by default, Mitiq uses
scale_factors = [1, 2, 3]
andfold_gates_at_random
as a noise scaling method.