pykoop.lmi_regressors.LmiEdmd
- class LmiEdmd(alpha=0, ratio=1, reg_method='tikhonov', inv_method='svd', tsvd=None, square_norm=False, picos_eps=1e-06, solver_params=None)
Bases:
LmiRegressorLMI-based EDMD with regularization.
Supports Tikhonov regularization, optionally mixed with matrix two-norm regularization or nuclear norm regularization.
- Parameters:
- tsvd_
Fit truncated SVD object.
- Type:
- solver_params_
Solver parameters used (defaults merged with constructor input).
- Type:
Optional[Dict[str, Any]]
- feature_names_in_
Array of input feature name strings.
- Type:
np.ndarray
- coef_
Fit coefficient matrix.
- Type:
np.ndarray
Examples
LMI EDMD without regularization
>>> kp = pykoop.KoopmanPipeline(regressor=pykoop.lmi_regressors.LmiEdmd()) >>> kp.fit(X_msd, n_inputs=1, episode_feature=True) KoopmanPipeline(regressor=LmiEdmd())
LMI EDMD with Tikhonov regularization
>>> kp = pykoop.KoopmanPipeline( ... regressor=pykoop.lmi_regressors.LmiEdmd( ... alpha=1, ... reg_method='tikhonov', ... ) ... ) >>> kp.fit(X_msd, n_inputs=1, episode_feature=True) KoopmanPipeline(regressor=LmiEdmd(alpha=1))
LMI EDMD with matrix two-norm regularization
>>> kp = pykoop.KoopmanPipeline( ... regressor=pykoop.lmi_regressors.LmiEdmd( ... alpha=1, ... reg_method='twonorm', ... ) ... ) >>> kp.fit(X_msd, n_inputs=1, episode_feature=True) KoopmanPipeline(regressor=LmiEdmd(alpha=1, reg_method='twonorm'))
LMI EDMD with mixed Tikhonov and squared-nuclear-norm regularization
>>> kp = pykoop.KoopmanPipeline( ... regressor=pykoop.lmi_regressors.LmiEdmd( ... alpha=1, ... ratio=0.5, ... reg_method='nuclear', ... square_norm=True, ... ) ... ) >>> kp.fit(X_msd, n_inputs=1, episode_feature=True) KoopmanPipeline(regressor=LmiEdmd(alpha=1, ratio=0.5, reg_method='nuclear', square_norm=True))
- __init__(alpha=0, ratio=1, reg_method='tikhonov', inv_method='svd', tsvd=None, square_norm=False, picos_eps=1e-06, solver_params=None)
Instantiate
LmiEdmd.To disable regularization, use
alpha=0paired withreg_method='tikhonov'.- Parameters:
alpha (float) – Regularization coefficient. Can only be zero if
reg_method='tikhonov'.ratio (float) – Ratio of matrix two-norm or nuclear norm to use in mixed regularization. If
ratio=1, no Tikhonov regularization is used. Cannot be zero. Ignored ifreg_method='tikhonov'.reg_method (str) –
Regularization method to use. Possible values are
'tikhonov'– pure Tikhonov regularization (ratiois ignored),'twonorm'– matrix two-norm regularization mixed with Tikhonov regularization, or'nuclear'– nuclear norm regularization mixed with Tikhonov regularization.
inv_method (str) –
Method to handle or avoid inversion of the
Hmatrix when forming the LMI problem. Possible values are'inv'– invertHdirectly,'pinv'– apply the Moore-Penrose pseudoinverse toH,'eig'– splitHusing an eigendecomposition,'ldl'– splitHusing an LDL decomposition,'chol'– splitHusing a Cholesky decomposition,'sqrt'– splitHusingscipy.linalg.sqrtm(), or'svd'– splitHusing a singular value decomposition.
tsvd (Optional[pykoop.Tsvd]) – Singular value truncation method if
inv_method='svd'. IfNone, economy SVD is used.square_norm (bool) – Square norm in matrix two-norm or nuclear norm regularizer. Enabling may increase computation time. Frobenius norm used in Tikhonov regularizer is always squared.
picos_eps (float) – Tolerance used for strict LMIs. If nonzero, should be larger than solver tolerance.
solver_params (Optional[Dict[str, Any]]) – Parameters passed to PICOS
picos.Problem.solve(). By default, allows chosen solver to select its own tolerances.
- Return type:
None
Methods
__init__([alpha, ratio, reg_method, ...])Instantiate
LmiEdmd.fit(X[, y, n_inputs, episode_feature])Fit the regressor.
frequency_response(t_step[, f_min, f_max, ...])Compute frequency response of Koopman system.
Get metadata routing of this object.
get_params([deep])Get parameters for this estimator.
plot_bode(t_step[, f_min, f_max, n_points, ...])Plot frequency response of Koopman system.
plot_eigenvalues([unit_circle, figure_kw, ...])Plot eigenvalues of Koopman
Amatrix.plot_koopman_matrix([subplots_kw, plot_kw])Plot heatmap of Koopman matrices.
plot_svd([subplots_kw, plot_kw])Plot singular values of Koopman matrices.
predict(X)Perform a single-step prediction for each state in each episode.
score(X, y[, sample_weight])Return the coefficient of determination of the prediction.
set_fit_request(*[, episode_feature, n_inputs])Request metadata passed to the
fitmethod.set_params(**params)Set the parameters of this estimator.
set_score_request(*[, sample_weight])Request metadata passed to the
scoremethod.- fit(X, y=None, n_inputs=0, episode_feature=False)
Fit the regressor.
If only
Xis specified, the regressor will compute its unshifted and shifted versions. IfXandyare specified,Xis treated as the unshifted data matrix, whileyis treated as the shifted data matrix.- Parameters:
X (np.ndarray) – Full data matrix if
y=None. Unshifted data matrix ifyis specified.y (Optional[np.ndarray]) – Optional shifted data matrix. If
None, shifted data matrix is computed usingX.n_inputs (int) – Number of input features at the end of
X.episode_feature (bool) – True if first feature indicates which episode a timestep is from.
- Returns:
Instance of itself.
- Return type:
- Raises:
ValueError – If constructor or fit parameters are incorrect.
- frequency_response(t_step, f_min=0, f_max=None, n_points=1000, decibels=True)
Compute frequency response of Koopman system.
- Parameters:
- Returns:
Frequency (Hz) and frequency response (gain or dB).
- Return type:
Tuple[np.ndarray, np.ndarray]
- Raises:
ValueError – If
f_minis less than zero orf_maxis greater than the Nyquist frequency.
- get_metadata_routing()
Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
- Returns:
routing – A
MetadataRequestencapsulating routing information.- Return type:
MetadataRequest
- get_params(deep=True)
Get parameters for this estimator.
- plot_bode(t_step, f_min=0, f_max=None, n_points=1000, decibels=True, subplots_kw=None, plot_kw=None)
Plot frequency response of Koopman system.
- Parameters:
t_step (float) – Sampling timestep.
f_min (float) – Minimum frequency to plot.
f_max (Optional[float]) – Maximum frequency to plot. If
None, uses Nyquist frequency.n_points (int) – Number of frequecy points to plot.
decibels (bool) – Plot gain in dB (default is true).
subplots_kw (Optional[Dict[str, Any]]) – Keyword arguments for
plt.subplots().plot_kw (Optional[Dict[str, Any]]) – Keyword arguments for Matplotlib
plt.Axes.plot().
- Returns:
Matplotlib
plt.Figureandplt.Axesobjects.- Return type:
Tuple[plt.Figure, plt.Axes]
- Raises:
ValueError – If
f_minis less than zero orf_maxis greater than the Nyquist frequency.
- plot_eigenvalues(unit_circle=True, figure_kw=None, subplot_kw=None, plot_kw=None)
Plot eigenvalues of Koopman
Amatrix.- Parameters:
- Returns:
Matplotlib
plt.Figureandplt.Axesobjects.- Return type:
Tuple[plt.Figure, plt.Axes]
- plot_koopman_matrix(subplots_kw=None, plot_kw=None)
Plot heatmap of Koopman matrices.
- plot_svd(subplots_kw=None, plot_kw=None)
Plot singular values of Koopman matrices.
- predict(X)
Perform a single-step prediction for each state in each episode.
- Parameters:
X (np.ndarray) – Data matrix.
- Returns:
Predicted data matrix.
- Return type:
np.ndarray
- score(X, y, sample_weight=None)
Return the coefficient of determination of the prediction.
The coefficient of determination \(R^2\) is defined as \((1 - \frac{u}{v})\), where \(u\) is the residual sum of squares
((y_true - y_pred)** 2).sum()and \(v\) is the total sum of squares((y_true - y_true.mean()) ** 2).sum(). The best possible score is 1.0 and it can be negative (because the model can be arbitrarily worse). A constant model that always predicts the expected value of y, disregarding the input features, would get a \(R^2\) score of 0.0.- Parameters:
X (array-like of shape (n_samples, n_features)) – Test samples. For some estimators this may be a precomputed kernel matrix or a list of generic objects instead with shape
(n_samples, n_samples_fitted), wheren_samples_fittedis the number of samples used in the fitting for the estimator.y (array-like of shape (n_samples,) or (n_samples, n_outputs)) – True values for X.
sample_weight (array-like of shape (n_samples,), default=None) – Sample weights.
- Returns:
score – \(R^2\) of
self.predict(X)w.r.t. y.- Return type:
Notes
The \(R^2\) score used when calling
scoreon a regressor usesmultioutput='uniform_average'from version 0.23 to keep consistent with default value ofr2_score(). This influences thescoremethod of all the multioutput regressors (except forMultiOutputRegressor).
- set_fit_request(*, episode_feature='$UNCHANGED$', n_inputs='$UNCHANGED$')
Request metadata passed to the
fitmethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed tofitif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it tofit.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.- Parameters:
episode_feature (str, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED) – Metadata routing for
episode_featureparameter infit.n_inputs (str, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED) – Metadata routing for
n_inputsparameter infit.self (LmiEdmd)
- Returns:
self – The updated object.
- Return type:
- set_params(**params)
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as
Pipeline). The latter have parameters of the form<component>__<parameter>so that it’s possible to update each component of a nested object.- Parameters:
**params (dict) – Estimator parameters.
- Returns:
self – Estimator instance.
- Return type:
estimator instance
- set_score_request(*, sample_weight='$UNCHANGED$')
Request metadata passed to the
scoremethod.Note that this method is only relevant if
enable_metadata_routing=True(seesklearn.set_config()). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True: metadata is requested, and passed toscoreif provided. The request is ignored if metadata is not provided.False: metadata is not requested and the meta-estimator will not pass it toscore.None: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline. Otherwise it has no effect.