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.
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. |