Documentation
Classes
GraphicalLasso

GraphicalLasso

Sparse inverse covariance estimation with an l1-penalized estimator.

Read more in the User Guide.

Python Reference (opens in a new tab)

Constructors

constructor()

Signature

new GraphicalLasso(opts?: object): GraphicalLasso;

Parameters

NameTypeDescription
opts?object-
opts.alpha?numberThe regularization parameter: the higher alpha, the more regularization, the sparser the inverse covariance. Range is (0, inf]. Default Value 0.01
opts.assume_centered?booleanIf true, data are not centered before computation. Useful when working with data whose mean is almost, but not exactly zero. If false, data are centered before computation. Default Value false
opts.covariance?"precomputed"If covariance is “precomputed”, the input data in fit is assumed to be the covariance matrix. If undefined, the empirical covariance is estimated from the data X.
opts.enet_tol?numberThe tolerance for the elastic net solver used to calculate the descent direction. This parameter controls the accuracy of the search direction for a given column update, not of the overall parameter estimate. Only used for mode=’cd’. Range is (0, inf]. Default Value 0.0001
opts.eps?numberThe machine-precision regularization in the computation of the Cholesky diagonal factors. Increase this for very ill-conditioned systems. Default is np.finfo(np.float64).eps.
opts.max_iter?numberThe maximum number of iterations. Default Value 100
opts.mode?"cd" | "lars"The Lasso solver to use: coordinate descent or LARS. Use LARS for very sparse underlying graphs, where p > n. Elsewhere prefer cd which is more numerically stable. Default Value 'cd'
opts.tol?numberThe tolerance to declare convergence: if the dual gap goes below this value, iterations are stopped. Range is (0, inf]. Default Value 0.0001
opts.verbose?booleanIf verbose is true, the objective function and dual gap are plotted at each iteration. Default Value false

Returns

GraphicalLasso

Defined in: generated/covariance/GraphicalLasso.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/covariance/GraphicalLasso.ts:148 (opens in a new tab)

error_norm()

Compute the Mean Squared Error between two covariance estimators.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.comp_cov?ArrayLike[]The covariance to compare with.
opts.norm?"frobenius" | "spectral"The type of norm used to compute the error. Available error types: - ‘frobenius’ (default): sqrt(tr(A^t.A)) - ‘spectral’: sqrt(max(eigenvalues(A^t.A)) where A is the error (comp\_cov \- self.covariance\_). Default Value 'frobenius'
opts.scaling?booleanIf true (default), the squared error norm is divided by n_features. If false, the squared error norm is not rescaled. Default Value true
opts.squared?booleanWhether to compute the squared error norm or the error norm. If true (default), the squared error norm is returned. If false, the error norm is returned. Default Value true

Returns

Promise<number>

Defined in: generated/covariance/GraphicalLasso.ts:165 (opens in a new tab)

fit()

Fit the GraphicalLasso model to X.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLike[]Data from which to compute the covariance estimate.
opts.y?anyNot used, present for API consistency by convention.

Returns

Promise<any>

Defined in: generated/covariance/GraphicalLasso.ts:223 (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/covariance/GraphicalLasso.ts:263 (opens in a new tab)

get_precision()

Getter for the precision matrix.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.precision_?ArrayLike[]The precision matrix associated to the current covariance object.

Returns

Promise<any>

Defined in: generated/covariance/GraphicalLasso.ts:298 (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/covariance/GraphicalLasso.ts:100 (opens in a new tab)

mahalanobis()

Compute the squared Mahalanobis distances of given observations.

Signature

mahalanobis(opts: object): Promise<ArrayLike>;

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLike[]The observations, the Mahalanobis distances of the which we compute. Observations are assumed to be drawn from the same distribution than the data used in fit.

Returns

Promise<ArrayLike>

Defined in: generated/covariance/GraphicalLasso.ts:332 (opens in a new tab)

score()

Compute the log-likelihood of X\_test under the estimated Gaussian model.

The Gaussian model is defined by its mean and covariance matrix which are represented respectively by self.location\_ and self.covariance\_.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X_test?ArrayLike[]Test data of which we compute the likelihood, where n\_samples is the number of samples and n\_features is the number of features. X\_test is assumed to be drawn from the same distribution than the data used in fit (including centering).
opts.y?anyNot used, present for API consistency by convention.

Returns

Promise<number>

Defined in: generated/covariance/GraphicalLasso.ts:367 (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.X_test?string | booleanMetadata routing for X\_test parameter in score.

Returns

Promise<any>

Defined in: generated/covariance/GraphicalLasso.ts:411 (opens in a new tab)

Properties

_isDisposed

boolean = false

Defined in: generated/covariance/GraphicalLasso.ts:21 (opens in a new tab)

_isInitialized

boolean = false

Defined in: generated/covariance/GraphicalLasso.ts:20 (opens in a new tab)

_py

PythonBridge

Defined in: generated/covariance/GraphicalLasso.ts:19 (opens in a new tab)

id

string

Defined in: generated/covariance/GraphicalLasso.ts:16 (opens in a new tab)

opts

any

Defined in: generated/covariance/GraphicalLasso.ts:17 (opens in a new tab)

Accessors

costs_

The list of values of the objective function and the dual gap at each iteration. Returned only if return_costs is true.

Signature

costs_(): Promise<any>;

Returns

Promise<any>

Defined in: generated/covariance/GraphicalLasso.ts:546 (opens in a new tab)

covariance_

Estimated covariance matrix

Signature

covariance_(): Promise<ArrayLike[]>;

Returns

Promise<ArrayLike[]>

Defined in: generated/covariance/GraphicalLasso.ts:471 (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/covariance/GraphicalLasso.ts:594 (opens in a new tab)

location_

Estimated location, i.e. the estimated mean.

Signature

location_(): Promise<ArrayLike>;

Returns

Promise<ArrayLike>

Defined in: generated/covariance/GraphicalLasso.ts:446 (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/covariance/GraphicalLasso.ts:569 (opens in a new tab)

n_iter_

Number of iterations run.

Signature

n_iter_(): Promise<number>;

Returns

Promise<number>

Defined in: generated/covariance/GraphicalLasso.ts:521 (opens in a new tab)

precision_

Estimated pseudo inverse matrix.

Signature

precision_(): Promise<ArrayLike[]>;

Returns

Promise<ArrayLike[]>

Defined in: generated/covariance/GraphicalLasso.ts:496 (opens in a new tab)

py

Signature

py(): PythonBridge;

Returns

PythonBridge

Defined in: generated/covariance/GraphicalLasso.ts:87 (opens in a new tab)

Signature

py(pythonBridge: PythonBridge): void;

Parameters

NameType
pythonBridgePythonBridge

Returns

void

Defined in: generated/covariance/GraphicalLasso.ts:91 (opens in a new tab)