Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.
Warning

The package qiskit-ibmq-provider is being deprecated and its repo is going to be archived soon. Please transition to the new packages. More information in https://ibm.biz/provider_migration_guide

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.