Documentation
Classes
Lars

Lars

Least Angle Regression model a.k.a. LAR.

Read more in the User Guide.

Python Reference (opens in a new tab)

Constructors

constructor()

Signature

new Lars(opts?: object): Lars;

Parameters

NameTypeDescription
opts?object-
opts.copy_X?booleanIf true, X will be copied; else, it may be overwritten. Default Value true
opts.eps?numberThe machine-precision regularization in the computation of the Cholesky diagonal factors. Increase this for very ill-conditioned systems. Unlike the tol parameter in some iterative optimization-based algorithms, this parameter does not control the tolerance of the optimization.
opts.fit_intercept?booleanWhether to calculate the intercept for this model. If set to false, no intercept will be used in calculations (i.e. data is expected to be centered). Default Value true
opts.fit_path?booleanIf true the full path is stored in the coef\_path\_ attribute. If you compute the solution for a large problem or many targets, setting fit\_path to false will lead to a speedup, especially with a small alpha. Default Value true
opts.jitter?numberUpper bound on a uniform noise parameter to be added to the y values, to satisfy the model’s assumption of one-at-a-time computations. Might help with stability.
opts.n_nonzero_coefs?numberTarget number of non-zero coefficients. Use np.inf for no limit. Default Value 500
opts.normalize?booleanThis parameter is ignored when fit\_intercept is set to false. If true, the regressors X will be normalized before regression by subtracting the mean and dividing by the l2-norm. If you wish to standardize, please use StandardScaler before calling fit on an estimator with normalize=False. Default Value false
opts.precompute?boolean | ArrayLike | "auto"Whether to use a precomputed Gram matrix to speed up calculations. If set to 'auto' let us decide. The Gram matrix can also be passed as argument. Default Value 'auto'
opts.random_state?numberDetermines random number generation for jittering. Pass an int for reproducible output across multiple function calls. See Glossary. Ignored if jitter is undefined.
opts.verbose?number | booleanSets the verbosity amount. Default Value false

Returns

Lars

Defined in: generated/linear_model/Lars.ts:23 (opens in a new tab)

Methods

dispose()

Disposes of the underlying Python resources.

Once dispose() is called, the instance is no longer usable.

Signature

dispose(): Promise<void>;

Returns

Promise<void>

Defined in: generated/linear_model/Lars.ts:154 (opens in a new tab)

fit()

Fit the model using X, y as training data.

Signature

fit(opts: object): Promise<any>;

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLike[]Training data.
opts.Xy?ArrayLikeXy = np.dot(X.T, y) that can be precomputed. It is useful only when the Gram matrix is precomputed.
opts.y?ArrayLikeTarget values.

Returns

Promise<any>

Defined in: generated/linear_model/Lars.ts:171 (opens in a new tab)

get_metadata_routing()

Get metadata routing of this object.

Please check User Guide on how the routing mechanism works.

Signature

get_metadata_routing(opts: object): Promise<any>;

Parameters

NameTypeDescription
optsobject-
opts.routing?anyA MetadataRequest encapsulating routing information.

Returns

Promise<any>

Defined in: generated/linear_model/Lars.ts:219 (opens in a new tab)

init()

Initializes the underlying Python resources.

This instance is not usable until the Promise returned by init() resolves.

Signature

init(py: PythonBridge): Promise<void>;

Parameters

NameType
pyPythonBridge

Returns

Promise<void>

Defined in: generated/linear_model/Lars.ts:105 (opens in a new tab)

predict()

Predict using the linear model.

Signature

predict(opts: object): Promise<any>;

Parameters

NameTypeDescription
optsobject-
opts.X?anySamples.

Returns

Promise<any>

Defined in: generated/linear_model/Lars.ts:252 (opens in a new tab)

score()

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.

Signature

score(opts: object): Promise<number>;

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLike[]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), where n\_samples\_fitted is the number of samples used in the fitting for the estimator.
opts.sample_weight?ArrayLikeSample weights.
opts.y?ArrayLikeTrue values for X.

Returns

Promise<number>

Defined in: generated/linear_model/Lars.ts:285 (opens in a new tab)

set_fit_request()

Request metadata passed to the fit method.

Note that this method is only relevant if enable\_metadata\_routing=True (see sklearn.set\_config). Please see User Guide on how the routing mechanism works.

The options for each parameter are:

Signature

set_fit_request(opts: object): Promise<any>;

Parameters

NameTypeDescription
optsobject-
opts.Xy?string | booleanMetadata routing for Xy parameter in fit.

Returns

Promise<any>

Defined in: generated/linear_model/Lars.ts:336 (opens in a new tab)

set_score_request()

Request metadata passed to the score method.

Note that this method is only relevant if enable\_metadata\_routing=True (see sklearn.set\_config). Please see User Guide on how the routing mechanism works.

The options for each parameter are:

Signature

set_score_request(opts: object): Promise<any>;

Parameters

NameTypeDescription
optsobject-
opts.sample_weight?string | booleanMetadata routing for sample\_weight parameter in score.

Returns

Promise<any>

Defined in: generated/linear_model/Lars.ts:373 (opens in a new tab)

Properties

_isDisposed

boolean = false

Defined in: generated/linear_model/Lars.ts:21 (opens in a new tab)

_isInitialized

boolean = false

Defined in: generated/linear_model/Lars.ts:20 (opens in a new tab)

_py

PythonBridge

Defined in: generated/linear_model/Lars.ts:19 (opens in a new tab)

id

string

Defined in: generated/linear_model/Lars.ts:16 (opens in a new tab)

opts

any

Defined in: generated/linear_model/Lars.ts:17 (opens in a new tab)

Accessors

active_

Indices of active variables at the end of the path. If this is a list of list, the length of the outer list is n\_targets.

Signature

active_(): Promise<any[]>;

Returns

Promise<any[]>

Defined in: generated/linear_model/Lars.ts:428 (opens in a new tab)

alphas_

Maximum of covariances (in absolute value) at each iteration. n\_alphas is either max\_iter, n\_features or the number of nodes in the path with alpha >= alpha\_min, whichever is smaller. If this is a list of array-like, the length of the outer list is n\_targets.

Signature

alphas_(): Promise<ArrayLike>;

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Lars.ts:406 (opens in a new tab)

coef_

Parameter vector (w in the formulation formula).

Signature

coef_(): Promise<ArrayLike>;

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Lars.ts:473 (opens in a new tab)

coef_path_

The varying values of the coefficients along the path. It is not present if the fit\_path parameter is false. If this is a list of array-like, the length of the outer list is n\_targets.

Signature

coef_path_(): Promise<ArrayLike[]>;

Returns

Promise<ArrayLike[]>

Defined in: generated/linear_model/Lars.ts:450 (opens in a new tab)

feature_names_in_

Names of features seen during fit. Defined only when X has feature names that are all strings.

Signature

feature_names_in_(): Promise<ArrayLike>;

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Lars.ts:563 (opens in a new tab)

intercept_

Independent term in decision function.

Signature

intercept_(): Promise<number | ArrayLike>;

Returns

Promise<number | ArrayLike>

Defined in: generated/linear_model/Lars.ts:495 (opens in a new tab)

n_features_in_

Number of features seen during fit.

Signature

n_features_in_(): Promise<number>;

Returns

Promise<number>

Defined in: generated/linear_model/Lars.ts:540 (opens in a new tab)

n_iter_

The number of iterations taken by lars_path to find the grid of alphas for each target.

Signature

n_iter_(): Promise<number | ArrayLike>;

Returns

Promise<number | ArrayLike>

Defined in: generated/linear_model/Lars.ts:518 (opens in a new tab)

py

Signature

py(): PythonBridge;

Returns

PythonBridge

Defined in: generated/linear_model/Lars.ts:92 (opens in a new tab)

Signature

py(pythonBridge: PythonBridge): void;

Parameters

NameType
pythonBridgePythonBridge

Returns

void

Defined in: generated/linear_model/Lars.ts:96 (opens in a new tab)