qiskit.chemistry.algorithms.pes_samplers.PolynomialExtrapolator¶
-
class
PolynomialExtrapolator
(degree=1)[ソース]¶ An extrapolator based on fitting each parameter to a polynomial function of a user-specified degree.
WARNING: Should only be used with window. Using no window includes points after the point being extrapolated in the data window.
Constructor.
- パラメータ
degree (
int
) – Degree of polynomial to use for fitting in extrapolation.
-
__init__
(degree=1)[ソース]¶ Constructor.
- パラメータ
degree (
int
) – Degree of polynomial to use for fitting in extrapolation.
Methods
__init__
([degree])Constructor.
extrapolate
(points, param_dict)Extrapolate at specified point of interest given a set of variational parameters.
factory
(mode, **kwargs)Factory method for constructing extrapolators.
-
extrapolate
(points, param_dict)[ソース]¶ Extrapolate at specified point of interest given a set of variational parameters. Extrapolation is based on a polynomial function/spline fitting with a user-specified degree.
- パラメータ
points (
List
[float
]) – List of point(s) to be used for extrapolation. Can represent some degree of freedom, ex, interatomic distance.param_dict (
Optional
[Dict
[float
,List
[float
]]]) – Dictionary of variational parameters. Each key is the point and the value is a list of the variational parameters.
- 戻り値の型
Dict
[float
,List
[float
]]- 戻り値
Dictionary of variational parameters for extrapolated point(s).
-
static
factory
(mode, **kwargs)¶ Factory method for constructing extrapolators.
- パラメータ
mode (
str
) – Extrapolator to instantiate. Can be one of: - 『window』 - 『poly』 - 『diff_model』 - 『pca』 - 『l1』kwargs – arguments to be passed to the constructor of an extrapolator
- 戻り値の型
Extrapolator
- 戻り値
A newly created extrapolator instance.
- 例外
AquaError – if specified mode is unknown.