Getting Started#

Installation#

Qiskit Experiments is built on top of Qiskit, so we recommend that you first install Qiskit following its installation guide. Qiskit Experiments supports the same platforms as Qiskit itself and Python versions 3.8 through 3.12.

Qiskit Experiments releases can be installed via the Python package manager pip in your shell environment:

python -m pip install qiskit-experiments

There are a number of optional packages that enable some experiments and features. If you would like to install these optional dependencies, run:

python -m pip install "qiskit-experiments[extras]"

If you want to run the most up-to-date version instead (may not be stable), you can install the latest main branch:

python -m pip install git+https://github.com/Qiskit-Extensions/qiskit-experiments.git

If you want to develop the package, you can install Qiskit Experiments from source by cloning the repository:

git clone https://github.com/Qiskit-Extensions/qiskit-experiments.git
python -m pip install -e "qiskit-experiments[extras]"

The -e option will keep your installed package up to date as you make or pull new changes.

Upgrading Qiskit Experiments#

Qiskit Experiments version numbers are in the form 0.X.Y, where X is the minor version and Y is the patch version. There are two kinds of releases: minor releases, which increment the minor version, and patch releases, which increment the patch version. New features and API changes can only be introduced in a minor release. Patch releases contain only bug fixes and changes that do not affect how you use the package, such as performance optimization and documentation updates.

Therefore, when you encounter a bug or unexpected behavior, it is recommended that you first check if there’s a patch release you can upgrade to under the same minor version to avoid any breaking changes. When running pip, you can specify the exact version to install:

python -m pip install qiskit-experiments==0.X.Y

Before a nontrivial breaking API change is introduced in a minor release, the old feature will undergo a deprecation process lasting two releases for a core framework change and one release otherwise. During this process, deprecation warnings will be issued if you use the old feature that will instruct you on how to transition to the replacement feature, if applicable. The release notes contain full details on which features are deprecated or removed in each release.

Running your first experiment#

Let’s run a T1 Experiment, which estimates the characteristic relaxation time of a qubit from the excited state to the ground state, also known as \(T_1\), by measuring the excited state population after varying delays. First, we have to import the experiment from the Qiskit Experiments library:

from qiskit_experiments.library import T1

Experiments must be run on a backend. We’re going to use a simulator, FakePerth, for this example, but you can use any backend, real or simulated, that you can access through Qiskit.

Note

This tutorial requires the qiskit-aer and qiskit-ibm-runtime packages to run simulations. You can install them with python -m pip install qiskit-aer qiskit-ibm-runtime.

from qiskit_ibm_runtime.fake_provider import FakePerth
from qiskit_aer import AerSimulator

backend = AerSimulator.from_backend(FakePerth())

All experiments require a physical_qubits parameter as input that specifies which physical qubit or qubits the circuits will be executed on. The qubits must be given as a Python sequence (usually a tuple or a list).

In addition, the \(T_1\) experiment has a second required parameter, delays, which is a list of times in seconds at which to measure the excited state population. In this example, we’ll run the \(T_1\) experiment on qubit 0, and use the t1 backend property of this qubit to give us a good estimate for the sweep range of the delays.

import numpy as np

qubit0_t1 = FakePerth().qubit_properties(0).t1
delays = np.arange(1e-6, 3 * qubit0_t1, 3e-5)

exp = T1(physical_qubits=(0,), delays=delays)

The circuits encapsulated by the experiment can be accessed using the experiment’s circuits() method, which returns a list of circuits that can be run on a backend. Let’s print the range of delay times we’re sweeping over and draw the first and last circuits for our \(T_1\) experiment:

print(delays)
exp.circuits()[0].draw(output="mpl", style="iqp")
[1.00e-06 3.10e-05 6.10e-05 9.10e-05 1.21e-04 1.51e-04 1.81e-04 2.11e-04
 2.41e-04 2.71e-04 3.01e-04 3.31e-04 3.61e-04 3.91e-04 4.21e-04 4.51e-04
 4.81e-04 5.11e-04 5.41e-04 5.71e-04 6.01e-04]
../_images/getting_started_3_1.png
exp.circuits()[-1].draw(output="mpl", style="iqp")
../_images/getting_started_4_0.png

As expected, the delay block spans the full range of time values that we specified.

The ExperimentData class#

After instantiating the experiment, we run the experiment by calling run() with our backend of choice. This transpiles our experiment circuits then packages them into jobs that are run on the backend.

Note

See the how-tos for customizing job splitting when running an experiment.

This statement returns the ExperimentData class containing the results of the experiment, so it’s crucial that we assign the output to a data variable. We could have also provided the backend at the instantiation of the experiment, but specifying the backend at run time allows us to run the same exact experiment on different backends should we choose to do so.

exp_data = exp.run(backend=backend).block_for_results()

The block_for_results() method is optional and is used to block execution of subsequent code until the experiment has fully completed execution and analysis. If

exp_data = exp.run(backend=backend)

is executed instead, the statement will finish running as soon as the jobs are submitted, but the analysis callback won’t populate exp_data with results until the entire process has finished. In this case, there are two useful methods in the ExperimentData, job_status() and analysis_status(), that return the current status of the job and analysis, respectively:

print(exp_data.job_status())
print(exp_data.analysis_status())
JobStatus.DONE
AnalysisStatus.DONE

Figures#

Once the analysis is complete, figures are retrieved using the figure() method. See the visualization module tutorial on how to customize figures for an experiment. For our \(T_1\) experiment, we have a single figure showing the raw data and fit to the exponential decay model of the \(T_1\) experiment:

display(exp_data.figure(0))
../_images/getting_started_8_0.png

Analysis Results#

The analysis results resulting from the fit are accessed with analysis_results(). If the dataframe=True parameter is passed, analysis results will be retrieved in the pandas DataFrame format:

exp_data.analysis_results(dataframe=True)
name experiment components value quality backend run_time chisq unit
2fba2898 @Parameters_T1Analysis T1 [Q0] CurveFitResult:\n - fitting method: least_squa... good aer_simulator_from(fake_perth) None None None
7715b87a T1 T1 [Q0] 0.000204+/-0.000006 good aer_simulator_from(fake_perth) None 1.026598 s

Alternatively, analysis results can be accessed via the legacy list format:

for result in exp_data.analysis_results():
    print(result)
AnalysisResult
- name: @Parameters_T1Analysis
- value: CurveFitResult:
 - fitting method: least_squares
 - number of sub-models: 1
  * F_exp_decay(x) = amp * exp(-x/tau) + base
 - success: True
 - number of function evals: 20
 - degree of freedom: 18
 - chi-square: 18.47876053442437
 - reduced chi-square: 1.0265978074680207
 - Akaike info crit.: 3.3140906674476804
 - Bayesian info crit.: 6.44765798061795
 - init params:
  * amp = 0.8917073170731707
  * tau = 0.00022757667822705945
  * base = 0.07560975609756097
 - fit params:
  * amp = 0.9504973381292087 ± 0.008705262908806402
  * tau = 0.00020446308045164654 ± 5.903788584825482e-06
  * base = 0.020373198497864026 ± 0.007946021506350391
 - correlations:
  * (tau, base) = -0.903536546833355
  * (amp, base) = -0.6254942100690958
  * (amp, tau) = 0.389026870948369
- quality: good
- extra: <3 items>
- device_components: ['Q0']
- verified: False
AnalysisResult
- name: T1
- value: 0.000204+/-0.000006
- χ²: 1.0265978074680207
- quality: good
- extra: <3 items>
- device_components: ['Q0']
- verified: False

Individual results can be retrieved using their name or their long or short IDs, which will all return the corresponding AnalysisResult object:

exp_data.analysis_results("T1")
exp_data.analysis_results("7715b87a-6d7b-4d21-baf8-c6f226e2c3ec")
exp_data.analysis_results("7715b87a")

Attention

Retrieving analysis results by a numerical index, whether an integer or a slice, is deprecated as of 0.6 and will be removed in a future release.

Each analysis result value is a UFloat object from the uncertainties package. The nominal value and standard deviation of each value can be accessed as follows:

print(exp_data.analysis_results("T1").value.nominal_value)
print(exp_data.analysis_results("T1").value.std_dev)
0.00020446308045164654
5.903788584825482e-06

For further documentation on how to work with UFloats, consult the uncertainties User Guide.

Artifacts#

The curve fit data itself is contained in artifacts(), which are accessed in an analogous manner. Artifacts for a standard experiment include both the curve fit data stored in artifacts("curve_data") and information on the fit stored in artifacts("fit_summary"). Use the data attribute to access artifact data:

print(exp_data.artifacts("fit_summary").data)
CurveFitResult:
 - fitting method: least_squares
 - number of sub-models: 1
  * F_exp_decay(x) = amp * exp(-x/tau) + base
 - success: True
 - number of function evals: 20
 - degree of freedom: 18
 - chi-square: 18.47876053442437
 - reduced chi-square: 1.0265978074680207
 - Akaike info crit.: 3.3140906674476804
 - Bayesian info crit.: 6.44765798061795
 - init params:
  * amp = 0.8917073170731707
  * tau = 0.00022757667822705945
  * base = 0.07560975609756097
 - fit params:
  * amp = 0.9504973381292087 ± 0.008705262908806402
  * tau = 0.00020446308045164654 ± 5.903788584825482e-06
  * base = 0.020373198497864026 ± 0.007946021506350391
 - correlations:
  * (tau, base) = -0.903536546833355
  * (amp, base) = -0.6254942100690958
  * (amp, tau) = 0.389026870948369

Note

See the artifacts how-to for more information on using artifacts.

Circuit data and metadata#

Raw circuit output data and its associated metadata can be accessed with the data() property. Data is indexed by the circuit it corresponds to. Depending on the measurement level set in the experiment, the raw data will either be in the key counts (level 2) or memory (level 1 IQ data).

Note

See the data processor tutorial for more information on level 1 and level 2 data.

Circuit metadata contains information set by the experiment on a circuit-by-circuit basis; xval is used by the analysis to extract the x value for each circuit when fitting the data.

print(exp_data.data(0))
{'counts': {'0': 33, '1': 991}, 'job_id': 'fc906df9-3806-476d-8fa4-4e9c2e683ca8', 'metadata': {'xval': 9.99111111111111e-07}, 'shots': 1024, 'meas_level': <MeasLevel.CLASSIFIED: 2>}

Experiments also have global associated metadata accessed by the metadata() property.

print(exp_data.metadata)
{'physical_qubits': [0], 'device_components': [<Qubit(Q0)>], 'meas_level': <MeasLevel.CLASSIFIED: 2>, '_source': {'class': 'qiskit_experiments.framework.experiment_data.ExperimentData', 'metadata_version': 1, 'qiskit_version': {'qiskit': '1.0.2', 'qiskit-experiments': '0.6.1'}}}

Job information#

The actual backend jobs that were executed for the experiment can be accessed with the jobs() method.

Note

See the how-tos for rerunning the analysis for an existing experiment that finished execution.

Setting options for your experiment#

It’s often insufficient to run an experiment with only its default options. There are four types of options one can set for an experiment:

Run options#

These options are passed to the experiment’s run() method and then to the run() method of your specified backend. Any run option that your backend supports can be set:

from qiskit.qobj.utils import MeasLevel

exp.set_run_options(shots=1000,
                    meas_level=MeasLevel.CLASSIFIED)
print(f"Shots set to {exp.run_options.get('shots')}, "
      "measurement level set to {exp.run_options.get('meas_level')}")
Shots set to 1000, measurement level set to {exp.run_options.get('meas_level')}

Consult the documentation of the run method of your specific backend type for valid options. For example, see qiskit_ibm_provider.IBMBackend.run() for IBM backends.

Transpile options#

These options are passed to the Qiskit transpiler to transpile the experiment circuits before execution:

exp.set_transpile_options(scheduling_method='asap',
                          optimization_level=3,
                          basis_gates=["x", "sx", "rz"])
print(f"Transpile options are {exp.transpile_options}")
Transpile options are Options(optimization_level=3, scheduling_method='asap', basis_gates=['x', 'sx', 'rz'])

Consult the documentation of qiskit.compiler.transpile() for valid options.

Experiment options#

These options are unique to each experiment class. Many experiment options can be set upon experiment instantiation, but can also be explicitly set via set_experiment_options():

exp = T1(physical_qubits=(0,), delays=delays)
new_delays=np.arange(1e-6, 600e-6, 50e-6)
exp.set_experiment_options(delays=new_delays)
print(f"Experiment options are {exp.experiment_options}")
Experiment options are Options(max_circuits=None, delays=array([1.00e-06, 5.10e-05, 1.01e-04, 1.51e-04, 2.01e-04, 2.51e-04,
       3.01e-04, 3.51e-04, 4.01e-04, 4.51e-04, 5.01e-04, 5.51e-04]))

Consult the API documentation for the options of each experiment class.

Analysis options#

These options are unique to each analysis class. Unlike the other options, analysis options are not directly set via the experiment object but use instead a method of the associated analysis:

from qiskit_experiments.library import StandardRB

exp = StandardRB(physical_qubits=(0,),
                lengths=list(range(1, 300, 30)),
                seed=123,
                backend=backend)
exp.analysis.set_options(gate_error_ratio=None)

Consult the API documentation for the options of each experiment’s analysis class.

Running experiments on multiple qubits#

To run experiments across many qubits of the same device, we use composite experiments. A CompositeExperiment is a parent object that contains one or more child experiments, which may themselves be composite. There are two core types of composite experiments:

  • Parallel experiments run across qubits simultaneously as set by the user. The circuits of child experiments are combined into new circuits that map circuit gates onto qubits in parallel. Therefore, the circuits in child experiments cannot overlap in the physical_qubits parameter. The marginalization of measurement data for analysis of each child experiment is handled automatically.

  • Batch experiments run consecutively in time. These child circuits can overlap in qubits used.

Using parallel experiments, we can measure the \(T_1\) of one qubit while doing a standard Randomized Benchmarking StandardRB experiment on other qubits simultaneously on the same device:

from qiskit_experiments.framework import ParallelExperiment

child_exp1 = T1(physical_qubits=(2,), delays=delays)
child_exp2 = StandardRB(physical_qubits=(3,1), lengths=np.arange(1,100,10), num_samples=2)
parallel_exp = ParallelExperiment([child_exp1, child_exp2], flatten_results=False)

Note that when the transpile and run options are set for a composite experiment, the child experiments’s options are also set to the same options recursively. Let’s examine how the parallel experiment is constructed by visualizing child and parent circuits. The child experiments can be accessed via the component_experiment() method, which indexes from zero:

parallel_exp.component_experiment(0).circuits()[0].draw(output="mpl", style="iqp")
../_images/getting_started_21_0.png
parallel_exp.component_experiment(1).circuits()[0].draw(output="mpl", style="iqp")
../_images/getting_started_22_0.png

Similarly, the child analyses can be accessed via CompositeAnalysis.component_analysis() or via the analysis of the child experiment class:

parallel_exp.component_experiment(0).analysis.set_options(plot = True)

# This should print out what we set because it's the same option
print(parallel_exp.analysis.component_analysis(0).options.get("plot"))
True

The circuits of all experiments assume they’re acting on virtual qubits starting from index 0. In the case of a parallel experiment, the child experiment circuits are composed together and then reassigned virtual qubit indices:

parallel_exp.circuits()[0].draw(output="mpl", style="iqp")
../_images/getting_started_24_0.png

During experiment transpilation, a mapping is performed to place these circuits on the physical layout. We can see its effects by looking at the transpiled circuit, which is accessed via the internal method _transpiled_circuits(). After transpilation, the T1 experiment is correctly placed on physical qubit 2 and the StandardRB experiment’s gates are on physical qubits 3 and 1.

parallel_exp._transpiled_circuits()[0].draw(output="mpl", style="iqp")
../_images/getting_started_25_0.png

ParallelExperiment and BatchExperiment classes can also be nested arbitrarily to make complex composite experiments.

../_images/compositeexperiments.png

Viewing child experiment data#

The experiment data returned from a composite experiment contains individual analysis results for each child experiment that can be accessed using child_data(). By default, the parent data object does not contain analysis results.

Note

This behavior will be updated in Qiskit Experiments 0.7. By default, all analysis results will be stored in the parent data object, and you need to explicitly set flatten_results=False to generate child data objects.

parallel_data = parallel_exp.run(backend, seed_simulator=101).block_for_results()

for i, sub_data in enumerate(parallel_data.child_data()):
    print("Component experiment",i)
    display(sub_data.figure(0))
    for result in sub_data.analysis_results():
        print(result)
Component experiment 0
../_images/getting_started_26_1.png
AnalysisResult
- name: @Parameters_T1Analysis
- value: CurveFitResult:
 - fitting method: least_squares
 - number of sub-models: 1
  * F_exp_decay(x) = amp * exp(-x/tau) + base
 - success: True
 - number of function evals: 20
 - degree of freedom: 18
 - chi-square: 17.752694047140288
 - reduced chi-square: 0.9862607803966826
 - Akaike info crit.: 2.472311723678079
 - Bayesian info crit.: 5.605879036848348
 - init params:
  * amp = 0.8604878048780488
  * tau = 0.000270681311126032
  * base = 0.11560975609756098
 - fit params:
  * amp = 0.9943482326207248 ± 0.013523267802854313
  * tau = 0.00027622374888624276 ± 1.0898156909156488e-05
  * base = -0.007495337516728328 ± 0.015174749198190717
 - correlations:
  * (tau, base) = -0.9513541723462371
  * (amp, base) = -0.8606525135154393
  * (amp, tau) = 0.7231611650940293
- quality: good
- extra: <3 items>
- device_components: ['Q2']
- verified: False
AnalysisResult
- name: T1
- value: 0.000276+/-0.000011
- χ²: 0.9862607803966826
- quality: good
- extra: <3 items>
- device_components: ['Q2']
- verified: False
Component experiment 1
../_images/getting_started_26_3.png
AnalysisResult
- name: @Parameters_RBAnalysis
- value: CurveFitResult:
 - fitting method: least_squares
 - number of sub-models: 1
  * F_rb_decay(x) = a * alpha ** x + b
 - success: True
 - number of function evals: 24
 - degree of freedom: 7
 - chi-square: 4.232436774143516
 - reduced chi-square: 0.6046338248776452
 - Akaike info crit.: -2.5980719626274418
 - Bayesian info crit.: -1.690316683645304
 - init params:
  * a = 0.7030234784958117
  * alpha = 0.9828627789707794
  * b = 0.25
 - fit params:
  * a = 0.7204328986446149 ± 0.028984359500050034
  * alpha = 0.9823193859952135 ± 0.001472375440371253
  * b = 0.2345656378896525 ± 0.03107456538392951
 - correlations:
  * (alpha, b) = -0.9844293585445877
  * (a, b) = -0.9732425286572397
  * (a, alpha) = 0.9310852827073124
- quality: good
- extra: <2 items>
- device_components: ['Q3', 'Q1']
- verified: False
AnalysisResult
- name: alpha
- value: 0.9823+/-0.0015
- χ²: 0.6046338248776452
- quality: good
- extra: <2 items>
- device_components: ['Q3', 'Q1']
- verified: False
AnalysisResult
- name: EPC
- value: 0.0133+/-0.0011
- χ²: 0.6046338248776452
- quality: good
- extra: <2 items>
- device_components: ['Q3', 'Q1']
- verified: False
AnalysisResult
- name: EPG_cx
- value: 0.0078+/-0.0006
- χ²: 0.6046338248776452
- quality: good
- extra: <2 items>
- device_components: ['Q3', 'Q1']
- verified: False

If you want the parent data object to contain the analysis results instead, you can set the flatten_results flag to true to flatten the results of all component experiments into one level:

parallel_exp = ParallelExperiment(
    [T1(physical_qubits=(i,), delays=delays) for i in range(2)], flatten_results=True
)
parallel_data = parallel_exp.run(backend, seed_simulator=101).block_for_results()

parallel_data.analysis_results(dataframe=True)
name experiment components value quality backend run_time unit chisq
7cb62746 @Parameters_T1Analysis T1 [Q0] CurveFitResult:\n - fitting method: least_squa... good aer_simulator_from(fake_perth) None None None
72b5fa73 T1 T1 [Q0] 0.000206+/-0.000006 good aer_simulator_from(fake_perth) None s 0.932191
b2fd3ea6 @Parameters_T1Analysis T1 [Q1] CurveFitResult:\n - fitting method: least_squa... good aer_simulator_from(fake_perth) None None None
1e71f135 T1 T1 [Q1] 0.000170+/-0.000004 good aer_simulator_from(fake_perth) None s 0.93629

Broadcasting analysis options to child experiments#

Use the broadcast parameter to set analysis options to each of the child experiments.

parallel_exp.analysis.set_options(plot=False, broadcast=True)

If the child experiment inherits from CompositeExperiment (such as ParallelExperiment and BatchExperiment classes), this process will continue to work recursively. In this instance, the analysis will not generate a figure for the child experiment after the analysis.