qiskit.chemistry.algorithms.pes_samplers.DifferentialExtrapolator¶
-
class
DifferentialExtrapolator
(degree=1, model=None)[소스]¶ An extrapolator based on treating each param set as a point in space, and fitting a Hamiltonian which evolves each point to the next. The user specifies the type of regression model to perform fitting, and a degree which adds derivatives to the values in the point vector; serving as features for the regression model. WARNING: Should only be used with window. Using no window includes points after the point being extrapolated in the data window.
Constructor.
- 매개변수
model (
Union
[LinearRegression
,Ridge
,RidgeCV
,SGDRegressor
,None
]) – Regression model (from sklearn) to be used for fitting variational parameters. Currently supports the following models: LinearRegression(), Ridge(), RidgeCV(), and SGDRegressor().degree (
int
) – Specifies (degree -1) derivatives to be added as ‘features’ in regression model.
-
__init__
(degree=1, model=None)[소스]¶ Constructor.
- 매개변수
model (
Union
[LinearRegression
,Ridge
,RidgeCV
,SGDRegressor
,None
]) – Regression model (from sklearn) to be used for fitting variational parameters. Currently supports the following models: LinearRegression(), Ridge(), RidgeCV(), and SGDRegressor().degree (
int
) – Specifies (degree -1) derivatives to be added as ‘features’ in regression model.
Methods
__init__
([degree, model])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. Each parameter list and list of numerical gradients is treated as a single point in vector space. The regression model tries to fit a Hamiltonian that describes the evolution from one parameter set (and its gradient features) at point r, to another parameter set at point, r + epsilon. The regression model is then used to predict the parameter set at the point of interest. Note that this extrapolation technique does not explicitly use the spacing of the points (step size) but rather infers it from the list of parameter values.
- 매개변수
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 pointthe value is a list of the variational parameters. (and) –
- 반환 형식
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.