qiskit.providers.ibmq.experiment.Experiment¶
-
class
Experiment
(provider, backend_name, experiment_type, extra=None, tags=None, start_datetime=None, end_datetime=None, experiment_uuid=None, plot_names=None, analysis_results=None, hub=None, group=None, project=None, share_level=None, owner=None, notes=None)[소스]¶ Class representing an experiment.
Experiment constructor.
- 매개변수
provider (
AccountProvider
) – the account provider.backend_name (
str
) – Name of the backend.experiment_type (
str
) – Experiment type.extra (
Optional
[Dict
]) – Extra information about the experiment.tags (
Optional
[List
[str
]]) – Tags for the experiment.start_datetime (
Optional
[datetime
]) – Timestamp when the experiment started. If no timezone information is present, local timezone is assumed.end_datetime (
Optional
[datetime
]) – Timestamp when the experiment ended. If no timezone information is present, local timezone is assumed.experiment_uuid (
Optional
[str
]) – Unique identifier of the experiment.plot_names (
Optional
[List
[str
]]) – A list of plot names for this experiment.analysis_results (
Optional
[List
[AnalysisResult
]]) – A list of analysis results associated with this experiment.hub (
Optional
[str
]) – The hub to which this experiment belongs. If not specified the hub from the provider is used.group (
Optional
[str
]) – The group to which this experiment belongs. If not specified the group from the provider is used.project (
Optional
[str
]) – The project to which this experiment belongs. If not specified the project from the provider is used.share_level (
Union
[ExperimentShareLevel
,str
,None
]) –The level at which the experiment is shared. This determines who can view the experiment (but not update it). This defaults to “private” for new experiments. Possible values include:
private: The experiment is only visible to its owner (default)
project: The experiment is shared within its project
group: The experiment is shared within its group
hub: The experiment is shared within its hub
public: The experiment is shared publicly regardless of provider
owner (
Optional
[str
]) – The user ID for the owner of the experiment. This is set by the server when the experiment is uploaded and should not be set by a user.notes (
Optional
[str
]) – Notes about the experiment.
- 예외
ExperimentError – If the provider does not offer experiment services.
-
__init__
(provider, backend_name, experiment_type, extra=None, tags=None, start_datetime=None, end_datetime=None, experiment_uuid=None, plot_names=None, analysis_results=None, hub=None, group=None, project=None, share_level=None, owner=None, notes=None)[소스]¶ Experiment constructor.
- 매개변수
provider (
AccountProvider
) – the account provider.backend_name (
str
) – Name of the backend.experiment_type (
str
) – Experiment type.extra (
Optional
[Dict
]) – Extra information about the experiment.tags (
Optional
[List
[str
]]) – Tags for the experiment.start_datetime (
Optional
[datetime
]) – Timestamp when the experiment started. If no timezone information is present, local timezone is assumed.end_datetime (
Optional
[datetime
]) – Timestamp when the experiment ended. If no timezone information is present, local timezone is assumed.experiment_uuid (
Optional
[str
]) – Unique identifier of the experiment.plot_names (
Optional
[List
[str
]]) – A list of plot names for this experiment.analysis_results (
Optional
[List
[AnalysisResult
]]) – A list of analysis results associated with this experiment.hub (
Optional
[str
]) – The hub to which this experiment belongs. If not specified the hub from the provider is used.group (
Optional
[str
]) – The group to which this experiment belongs. If not specified the group from the provider is used.project (
Optional
[str
]) – The project to which this experiment belongs. If not specified the project from the provider is used.share_level (
Union
[ExperimentShareLevel
,str
,None
]) –The level at which the experiment is shared. This determines who can view the experiment (but not update it). This defaults to “private” for new experiments. Possible values include:
private: The experiment is only visible to its owner (default)
project: The experiment is shared within its project
group: The experiment is shared within its group
hub: The experiment is shared within its hub
public: The experiment is shared publicly regardless of provider
owner (
Optional
[str
]) – The user ID for the owner of the experiment. This is set by the server when the experiment is uploaded and should not be set by a user.notes (
Optional
[str
]) – Notes about the experiment.
- 예외
ExperimentError – If the provider does not offer experiment services.
Methods
__init__
(provider, backend_name, experiment_type)Experiment constructor.
from_remote_data
(provider, remote_data)Create an instance of this class from remote data.
refresh
()Update this experiment instance with remote data.
update_from_remote_data
(remote_data)Update the attributes of this instance using remote data.
Attributes
Return analysis results associated with this experiment.
Return the experiment’s backend name.
Return the timestamp when the experiment was created.
Return the timestamp when the experiment ended.
Return the experiment’s group.
Return the experiment’s hub.
Return the experiment’s owner.
Return names of plots associated with this experiment.
Return the experiment’s project.
Return the experiment share_level.
Return the timestamp when the experiment started.
Return the timestamp when the experiment was last updated.
Return the experiment’s uuid.
-
property
analysis_results
¶ Return analysis results associated with this experiment.
- 반환 형식
List
-
property
backend_name
¶ Return the experiment’s backend name.
- 반환 형식
str
-
property
creation_datetime
¶ Return the timestamp when the experiment was created.
- 반환 형식
Optional
[datetime
]
-
property
end_datetime
¶ Return the timestamp when the experiment ended.
- 반환 형식
Optional
[datetime
]
-
classmethod
from_remote_data
(provider, remote_data)[소스]¶ Create an instance of this class from remote data.
- 매개변수
provider (
AccountProvider
) – account provider.remote_data (
Dict
) – Remote data to use.
- 반환 형식
Experiment
- 반환값
An instance of this class.
-
property
group
¶ Return the experiment’s group.
- 반환 형식
str
-
property
hub
¶ Return the experiment’s hub.
- 반환 형식
str
-
property
owner
¶ Return the experiment’s owner.
- 반환 형식
str
-
property
plot_names
¶ Return names of plots associated with this experiment.
- 반환 형식
List
-
property
project
¶ Return the experiment’s project.
- 반환 형식
str
Return the experiment share_level.
- 반환 형식
Optional
[ExperimentShareLevel
]
-
property
start_datetime
¶ Return the timestamp when the experiment started.
- 반환 형식
datetime
-
update_from_remote_data
(remote_data)[소스]¶ Update the attributes of this instance using remote data.
- 매개변수
remote_data (
Dict
) – Remote data used to update this instance.- 반환 형식
None
-
property
updated_datetime
¶ Return the timestamp when the experiment was last updated.
- 반환 형식
Optional
[datetime
]
-
property
uuid
¶ Return the experiment’s uuid.
- 반환 형식
str