Skip to main contentIBM Quantum Documentation
You are viewing the API reference for an old version of Qiskit SDK. Switch to latest version

Experiment

qiskit.providers.ibmq.experiment

Modules related to IBM Quantum experiment service.

Note

This service is not available to all accounts.

You can use the experiment service to query, upload, and retrieve experiments, experiment figures, and analysis results. For example:

from qiskit import IBMQ
provider = IBMQ.load_account()
experiments = provider.experiment.experiments()

All the available functions can be invoked using the provider.experiment attribute, which is an instance of the IBMExperimentService class.

This service is intended to be used in conjunction with the qiskit-experiments package, which allows you to create different types of experiments (for example, qiskit_experiments.library.characterization.T1).


Classes

IBMExperimentService(provider)Provides experiment related services.
ResultQuality(value)Possible values for analysis result quality.
DeviceComponent()Class representing a device component.

Exceptions

IBMExperimentError(*message)Base class for errors raised by the experiment service modules.
IBMExperimentEntryExists(*message)Errors raised when an experiment entry already exists.
IBMExperimentEntryNotFound(*message)Errors raised when an experiment entry cannot be found.
Was this page helpful?
Report a bug or request content on GitHub.