qiskit.ignis.characterization.BaseCoherenceFitter¶
-
class
BaseCoherenceFitter
(description, backend_result, xdata, qubits, fit_fun, fit_p0, fit_bounds, circuit_names, series=None, expected_state='0', time_index=0, time_unit='micro-seconds')[Quellcode]¶ Base class for fitters of characteristic times
- Parameter
description (
str
) – description of the fitter’s purpose, e.g. ‚T1‘.backend_result (
Union
[Result
,List
[Result
]]) – result of execution on the backend.xdata (
Union
[List
[float
],array
]) – delay times of the circuits.qubits (
List
[int
]) – the qubits to be characterized.fit_fun (
Callable
[…,float
]) – equivalent to parameter f of scipy.curve_fit.fit_p0 (
List
[float
]) – equivalent to parameter p0 of scipy.curve_fit.fit_bounds (
Tuple
[List
[float
],List
[float
]]) – equivalent to parameter bounds of scipy.curve_fit.circuit_names (
List
[str
]) – names of the circuits, should be the same length as xdata. Full circuit name will be these plus the series name.series (
Optional
[List
[str
]]) – list of circuit name tagsexpected_state (
str
) – is the circuit supposed to end up in ‚0‘ or ‚1‘?time_index (
int
) – among parameters of fit_fun, which one is the characteristic time.time_unit (
str
) – unit of delay times in xdata.
-
__init__
(description, backend_result, xdata, qubits, fit_fun, fit_p0, fit_bounds, circuit_names, series=None, expected_state='0', time_index=0, time_unit='micro-seconds')[Quellcode]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(description, backend_result, xdata, …)Initialize self.
add_data
(results[, recalc, refit])Add new execution results to previous execution results
fit_data
([qid, p0, bounds, series])Fit the curve.
plot
(qind, series[, ax, show_plot])Plot coherence data.
time
([qid, series])Return the characteristic time for the given qubit and series
time_err
([qid, series])Return the error of characteristic time for the given qubit and series
Attributes
Return the execution results
Return the fitter’s purpose, e.g.
Return the function used in the fit, e.g.
Return the indices of the qubits to be characterized
Return the fit function parameters that were calculated by curve_fit
Return the error of the fit function parameters
Return the list of series for the data
Return the data points on the x-axis, the independenet parameter which is fit against
Return the data points on the y-axis
-
add_data
(results, recalc=True, refit=True)¶ Add new execution results to previous execution results
- Parameter
results (
Union
[Result
,List
[Result
]]) – new execution resultsrecalc (
bool
) – whether tp recalculate the datarefit (
bool
) – whether to refit the data
-
property
backend_result
¶ Return the execution results
- Rückgabetyp
Union
[Result
,List
[Result
]]
-
property
description
¶ Return the fitter’s purpose, e.g. ‚T1‘
- Rückgabetyp
str
-
fit_data
(qid=- 1, p0=None, bounds=None, series=None)¶ Fit the curve.
Compute self._params and self._params_err
- Parameter
qid (
int
) – qubit for fitting. If -1 fit for all the qubitsp0 (
Optional
[List
[float
]]) – initial guess, equivalent to p0 in scipy.optimizebounds (
Optional
[Tuple
[List
[float
],List
[float
]]]) – bounds, equivalent to bounds in scipy.optimizeseries (
Optional
[str
]) – series to fit (if None fit all)
-
property
fit_fun
¶ Return the function used in the fit, e.g. BaseFitter._exp_fit_fun
- Rückgabetyp
Callable
-
property
measured_qubits
¶ Return the indices of the qubits to be characterized
- Rückgabetyp
List
[int
]
-
property
params
¶ Return the fit function parameters that were calculated by curve_fit
- Rückgabetyp
List
[float
]
-
property
params_err
¶ Return the error of the fit function parameters
- Rückgabetyp
List
[float
]
-
plot
(qind, series, ax=None, show_plot=True)[Quellcode]¶ Plot coherence data.
- Parameter
qind (
int
) – qubit index to plotseries (
str
) – which series to plot (if list then plot multiple)ax (
Optional
[Any
]) – plot axesshow_plot (
bool
) – whether to call plt.show()
- Rückgabe
The axes object
- Rückgabetyp
Axes
- Verursacht
ImportError – if matplotlib is not installed
-
property
series
¶ Return the list of series for the data
- Rückgabetyp
Optional
[List
[str
]]
-
time
(qid=- 1, series='0')[Quellcode]¶ Return the characteristic time for the given qubit and series
- Parameter
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- Rückgabetyp
Union
[float
,List
[float
]]- Rückgabe
The characteristic time of the qubit, or all qubits
-
time_err
(qid=- 1, series='0')[Quellcode]¶ Return the error of characteristic time for the given qubit and series
- Parameter
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- Rückgabetyp
Union
[float
,List
[float
]]- Rückgabe
The error of the characteristic time of the qubit, or all qubits
-
property
xdata
¶ Return the data points on the x-axis, the independenet parameter which is fit against
- Rückgabetyp
Union
[List
[float
],array
]
-
property
ydata
¶ Return the data points on the y-axis
The data points are returning in the form of a list of dictionaries:
- ydata[i][‚mean‘] is a list, where item
no. j is the probability of success of qubit i for a circuit that lasts xdata[j].
- ydata[i][‚std‘] is a list, where ydata[‚std‘][j] is the
standard deviation of the success of qubit i.
- Rückgabetyp
List
[Dict
]