qiskit.ignis.characterization.T1Fitter¶
-
class
T1Fitter
(backend_result, xdata, qubits, fit_p0, fit_bounds, time_unit='micro-seconds')[código fonte]¶ Estimate T1, based on experiments outcomes,
The experiments were created by t1_circuits, and executed on the device.
The probabilities of measuring 1 is assumed to be of the form
\[f(t) = A\mathrm{e}^{-t/T_1}+B,\]for unknown parameters A, B, and T1.
- Parâmetros
backend_result (
Result
) – result of execution of t1_circuits on the backend.xdata (
Union
[List
[float
],array
]) – delay times of the T1 circuits.qubits (
List
[int
]) – indices of the qubits whose T1‘s are to be measured.fit_p0 (
List
[float
]) – initial values to the fit parameters, where the order is \((A, T_1, B)\).fit_bounds (
Tuple
[List
[float
],List
[float
]]) – bounds on the parameters to fit. The first tuple is the lower bounds, in the order \((A, T_1, B)\). The second tuple is the upper bounds.time_unit (
str
) – unit of delay times in xdata.
-
__init__
(backend_result, xdata, qubits, fit_p0, fit_bounds, time_unit='micro-seconds')[código fonte]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(backend_result, xdata, qubits, …)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
- Parâmetros
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
- Tipo de retorno
Union
[Result
,List
[Result
]]
-
property
description
¶ Return the fitter’s purpose, e.g. ‘T1’
- Tipo de retorno
str
-
fit_data
(qid=- 1, p0=None, bounds=None, series=None)¶ Fit the curve.
Compute self._params and self._params_err
- Parâmetros
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
- Tipo de retorno
Callable
-
property
measured_qubits
¶ Return the indices of the qubits to be characterized
- Tipo de retorno
List
[int
]
-
property
params
¶ Return the fit function parameters that were calculated by curve_fit
- Tipo de retorno
List
[float
]
-
property
params_err
¶ Return the error of the fit function parameters
- Tipo de retorno
List
[float
]
-
plot
(qind, series='0', ax=None, show_plot=False)[código fonte]¶ Plot coherence data.
- Parâmetros
qind – qubit index to plot
series – which series to plot (if list then plot multiple)
ax – plot axes
show_plot – whether to call plt.show()
- Retorna
The axes object
- Tipo de retorno
Axes
- Levanta
ImportError – if matplotlib is not installed
-
property
series
¶ Return the list of series for the data
- Tipo de retorno
Optional
[List
[str
]]
-
time
(qid=- 1, series='0')¶ Return the characteristic time for the given qubit and series
- Parâmetros
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- Tipo de retorno
Union
[float
,List
[float
]]- Retorna
The characteristic time of the qubit, or all qubits
-
time_err
(qid=- 1, series='0')¶ Return the error of characteristic time for the given qubit and series
- Parâmetros
qid (
int
) – the qubit index (or all qubits if -1)series (
str
) – the series to get
- Tipo de retorno
Union
[float
,List
[float
]]- Retorna
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
- Tipo de retorno
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.
- Tipo de retorno
List
[Dict
]