qiskit.providers.ibmq.experiment.ExperimentService¶
-
class
ExperimentService
(provider, access_token)[código fonte]¶ Provides experiment related services.
This class is the main interface to invoke IBM Quantum Experience experiment services, which allow you to create, delete, update, query, and retrieve experiments, experiment plots, and analysis results. The
experiment
attribute ofAccountProvider
is an instance of this class, and the main syntax for using the services isprovider.experiment.<action>
. For example:from qiskit import IBMQ provider = IBMQ.load_account() # Retrieve all experiments. experiments = provider.experiment.experiments() # Retrieve experiments with filtering. experiment_filtered = provider.experiment.experiments(backend_name='foo') # Retrieve a specific experiment using its ID. experiment = provider.experiment.retrieve_experiment(EXPERIMENT_ID) # Upload a new experiment. from qiskit.providers.ibmq.experiment import Experiment new_exp = Experiment( provider=provider, backend_name=backend_name, experiment_type='test', tags=['qiskit-test'] ) provider.experiment.upload_experiment(new_exp) # Update an experiment. new_exp.end_datetime = datetime.now() provider.experiment.update_experiment(new_exp) # Delete an experiment. provider.experiment.delete_experiment(EXPERIMENT_ID)
Similar syntax applies to analysis results and experiment plots. Classes
Experiment
andAnalysisResult
encapsulate data of an experiment and an analysis result, respectively.IBMQBackendService constructor.
- Parâmetros
provider (
AccountProvider
) – IBM Quantum Experience account provider.access_token (
str
) – IBM Quantum Experience access token.
-
__init__
(provider, access_token)[código fonte]¶ IBMQBackendService constructor.
- Parâmetros
provider (
AccountProvider
) – IBM Quantum Experience account provider.access_token (
str
) – IBM Quantum Experience access token.
Methods
__init__
(provider, access_token)IBMQBackendService constructor.
analysis_results
([limit, backend_name, …])Retrieve all analysis results, with optional filtering.
backends
()Return a list of backends.
delete_analysis_result
(result)Delete an analysis result.
delete_experiment
(experiment)Delete an experiment.
delete_plot
(experiment, plot_name)Delete an experiment plot.
device_components
([backend_name])Return the device components.
experiments
([limit, backend_name, type, …])Retrieve all experiments, with optional filtering.
retrieve_analysis_result
(result_id)Retrieve an analysis result.
retrieve_experiment
(experiment_id)Retrieve an experiment.
retrieve_plot
(experiment, plot_name[, file_name])Retrieve an experiment plot.
update_analysis_result
(result)Update an analysis result.
update_experiment
(experiment)Update an experiment.
update_plot
(experiment, plot, plot_name)Update an experiment plot.
upload_analysis_result
(result)Upload an analysis result.
upload_experiment
(experiment)Upload a new experiment.
upload_plot
(experiment, plot[, plot_name])Upload an experiment plot.
-
analysis_results
(limit=10, backend_name=None, device_components=None, experiment_id=None, result_type=None, quality=None)[código fonte]¶ Retrieve all analysis results, with optional filtering.
- Parâmetros
limit (
Optional
[int
]) – Number of analysis results to retrieve.backend_name (
Optional
[str
]) – Backend name used for filtering.device_components (
Optional
[List
[str
]]) – Filter by device components. An analysis result’s device components must match this list exactly for it to be included.experiment_id (
Optional
[str
]) – Experiment ID used for filtering.result_type (
Optional
[str
]) – Analysis result type used for filtering.quality (
Optional
[List
[Tuple
[str
,Union
[str
,ResultQuality
]]]]) – Quality value used for filtering. Each element in this list is a tuple of an operator and a value. The operator is one oflt
,le
,gt
,ge
, andeq
. The value is one of theResultQuality
values. For example,analysis_results(quality=[('ge', 'Computer Bad'), ('lt', 'Computer Good')])
will return all analysis results with a quality ofComputer Bad
andNo Information
.
- Tipo de retorno
List
[AnalysisResult
]- Retorna
A list of analysis results.
- Levanta
ValueError – If an invalid parameter value is specified.
-
backends
()[código fonte]¶ Return a list of backends.
- Tipo de retorno
List
[Dict
]- Retorna
A list of backends.
-
delete_analysis_result
(result)[código fonte]¶ Delete an analysis result.
- Parâmetros
result (
Union
[AnalysisResult
,str
]) – TheAnalysisResult
object or the analysis result UUID.
Nota
This method prompts for confirmation and requires a response before proceeding.
- Tipo de retorno
Optional
[AnalysisResult
]- Retorna
The deleted analysis result.
-
delete_experiment
(experiment)[código fonte]¶ Delete an experiment.
- Parâmetros
experiment (
Union
[Experiment
,str
]) – TheExperiment
object or the experiment ID.
Nota
This method prompts for confirmation and requires a response before proceeding.
- Tipo de retorno
Optional
[Experiment
]- Retorna
Deleted experiment.
-
delete_plot
(experiment, plot_name)[código fonte]¶ Delete an experiment plot.
Nota
This method prompts for confirmation and requires a response before proceeding.
- Parâmetros
experiment (
Union
[Experiment
,str
]) – TheExperiment
object or the experiment UUID.plot_name (
str
) – Name of the plot.
- Tipo de retorno
None
-
device_components
(backend_name=None)[código fonte]¶ Return the device components.
- Parâmetros
backend_name (
Optional
[str
]) – Name of the backend whose components are to be retrieved.- Tipo de retorno
List
[DeviceComponent
]- Retorna
A list of device components.
-
experiments
(limit=10, backend_name=None, type=None, start_datetime=None, end_datetime=None, device_components=None, tags=None, tags_operator='OR', hub=None, group=None, project=None, exclude_public=False, public_only=False, exclude_mine=False, mine_only=False)[código fonte]¶ Retrieve all experiments, with optional filtering.
By default, results returned are as inclusive as possible. For example, if you don’t specify any filters, all experiments visible to you are returned. This includes your own experiments as well as those shared with you, from all providers you have access to (not just from the provider you used to invoke this experiment service).
- Parâmetros
limit (
Optional
[int
]) – Number of experiments to retrieve.None
indicates no limit.backend_name (
Optional
[str
]) – Backend name used for filtering.type (
Optional
[str
]) – Experiment type used for filtering.start_datetime (
Optional
[datetime
]) – Filter by the given start timestamp, in local time. This is used to find experiments whose start date/time is after (greater than or equal to) this local timestamp.end_datetime (
Optional
[datetime
]) – Filter by the given end timestamp, in local time. This is used to find experiments whose start date/time is before (less than or equal to) this local timestamp.device_components (
Optional
[List
[str
]]) – Filter by device components. An experiment must have analysis results with device components matching the given list exactly to be included.tags (
Optional
[List
[str
]]) – Filter by tags assigned to experiments.tags_operator (
Optional
[str
]) –Logical operator to use when filtering by job tags. Valid values are “AND” and “OR”:
If “AND” is specified, then an experiment must have all of the tags specified in tags to be included.
If “OR” is specified, then an experiment only needs to have any of the tags specified in tags to be included.
hub (
Optional
[str
]) – Filter by hub.group (
Optional
[str
]) – Filter by hub and group. hub must also be specified if group is.project (
Optional
[str
]) – Filter by hub, group, and project. hub and group must also be specified if project is.exclude_public (
Optional
[bool
]) – IfTrue
, experiments withshare_level=public
(that is, experiments visible to all users) will not be returned. Cannot beTrue
if public_only isTrue
.public_only (
Optional
[bool
]) – IfTrue
, only experiments withshare_level=public
(that is, experiments visible to all users) will be returned. Cannot beTrue
if exclude_public isTrue
.exclude_mine (
Optional
[bool
]) – IfTrue
, experiments where I am the owner will not be returned. Cannot beTrue
if mine_only isTrue
.mine_only (
Optional
[bool
]) – IfTrue
, only experiments where I am the owner will be returned. Cannot beTrue
if exclude_mine isTrue
.
- Tipo de retorno
List
[Experiment
]- Retorna
A list of experiments.
- Levanta
ValueError – If an invalid parameter value is specified.
-
retrieve_analysis_result
(result_id)[código fonte]¶ Retrieve an analysis result.
- Parâmetros
result_id (
str
) – Analysis result UUID.- Tipo de retorno
AnalysisResult
- Retorna
Retrieved analysis result.
- Levanta
AnalysisResultNotFoundError – If the analysis result is not found.
RequestsApiError – If an unexpected error occurred when retrieving analysis result from the server.
-
retrieve_experiment
(experiment_id)[código fonte]¶ Retrieve an experiment.
- Parâmetros
experiment_id (
str
) – Experiment uuid.- Tipo de retorno
Experiment
- Retorna
Retrieved experiment.
- Levanta
ExperimentNotFoundError – If the experiment is not found.
RequestsApiError – If an unexpected error occurred when retrieving experiment from the server.
-
retrieve_plot
(experiment, plot_name, file_name=None)[código fonte]¶ Retrieve an experiment plot.
- Parâmetros
experiment (
Union
[Experiment
,str
]) – TheExperiment
object or the experiment UUID.plot_name (
str
) – Name of the plot.file_name (
Optional
[str
]) – Name of the local file to save the plot to. IfNone
, the content of the plot is returned instead.
- Tipo de retorno
Union
[int
,bytes
]- Retorna
The size of the plot if file_name is specified. Otherwise the content of the plot in bytes.
- Levanta
PlotNotFoundError – If the plot is not found.
RequestsApiError – If an unexpected error occurred when retrieving plot from the server.
-
update_analysis_result
(result)[código fonte]¶ Update an analysis result.
- Parâmetros
result (
AnalysisResult
) – The analysis result to upload.- Tipo de retorno
None
-
update_experiment
(experiment)[código fonte]¶ Update an experiment.
Nota
Only the following experiment attributes can be updated:
end_datetime
share_level (visibility)
- Parâmetros
experiment (
Experiment
) – Experiment to be updated.- Tipo de retorno
None
-
update_plot
(experiment, plot, plot_name)[código fonte]¶ Update an experiment plot.
- Parâmetros
experiment (
Union
[Experiment
,str
]) – TheExperiment
object or the experiment UUID.plot (
Union
[str
,bytes
]) – Name of the plot file or plot data to upload.plot_name (
str
) – Name of the plot to update.
- Tipo de retorno
Dict
- Retorna
A dictionary with name and size of the uploaded plot.
-
upload_analysis_result
(result)[código fonte]¶ Upload an analysis result.
- Parâmetros
result (
AnalysisResult
) – The analysis result to upload.- Tipo de retorno
None
-
upload_experiment
(experiment)[código fonte]¶ Upload a new experiment.
- Parâmetros
experiment (
Experiment
) – The experiment to upload.- Tipo de retorno
None
-
upload_plot
(experiment, plot, plot_name=None)[código fonte]¶ Upload an experiment plot.
- Parâmetros
experiment (
Union
[Experiment
,str
]) – TheExperiment
object or the experiment UUID.plot (
Union
[str
,bytes
]) – Name of the plot file or plot data to upload.plot_name (
Optional
[str
]) – Name of the plot. IfNone
, the plot file name, if given, or a generated name is used.
- Tipo de retorno
Dict
- Retorna
A dictionary with name and size of the uploaded plot.