Documentation
Classes
Perceptron

Perceptron

Linear perceptron classifier.

Read more in the User Guide.

Python Reference (opens in a new tab)

Constructors

constructor()

Signature

new Perceptron(opts?: object): Perceptron;

Parameters

NameTypeDescription
opts?object-
opts.alpha?numberConstant that multiplies the regularization term if regularization is used. Default Value 0.0001
opts.class_weight?anyPreset for the class_weight fit parameter. Weights associated with classes. If not given, all classes are supposed to have weight one. The “balanced” mode uses the values of y to automatically adjust weights inversely proportional to class frequencies in the input data as n\_samples / (n\_classes \* np.bincount(y)).
opts.early_stopping?booleanWhether to use early stopping to terminate training when validation. score is not improving. If set to true, it will automatically set aside a stratified fraction of training data as validation and terminate training when validation score is not improving by at least tol for n_iter_no_change consecutive epochs. Default Value false
opts.eta0?numberConstant by which the updates are multiplied. Default Value 1
opts.fit_intercept?booleanWhether the intercept should be estimated or not. If false, the data is assumed to be already centered. Default Value true
opts.l1_ratio?numberThe Elastic Net mixing parameter, with 0 <= l1\_ratio <= 1. l1\_ratio=0 corresponds to L2 penalty, l1\_ratio=1 to L1. Only used if penalty='elasticnet'. Default Value 0.15
opts.max_iter?numberThe maximum number of passes over the training data (aka epochs). It only impacts the behavior in the fit method, and not the partial\_fit method. Default Value 1000
opts.n_iter_no_change?numberNumber of iterations with no improvement to wait before early stopping. Default Value 5
opts.n_jobs?numberThe number of CPUs to use to do the OVA (One Versus All, for multi-class problems) computation. undefined means 1 unless in a joblib.parallel\_backend (opens in a new tab) context. \-1 means using all processors. See Glossary for more details.
opts.penalty?"l1" | "l2" | "elasticnet"The penalty (aka regularization term) to be used.
opts.random_state?numberUsed to shuffle the training data, when shuffle is set to true. Pass an int for reproducible output across multiple function calls. See Glossary. Default Value 0
opts.shuffle?booleanWhether or not the training data should be shuffled after each epoch. Default Value true
opts.tol?numberThe stopping criterion. If it is not undefined, the iterations will stop when (loss > previous_loss - tol). Default Value 0.001
opts.validation_fraction?numberThe proportion of training data to set aside as validation set for early stopping. Must be between 0 and 1. Only used if early_stopping is true. Default Value 0.1
opts.verbose?numberThe verbosity level. Default Value 0
opts.warm_start?booleanWhen set to true, reuse the solution of the previous call to fit as initialization, otherwise, just erase the previous solution. See the Glossary. Default Value false

Returns

Perceptron

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

Methods

decision_function()

Predict confidence scores for samples.

The confidence score for a sample is proportional to the signed distance of that sample to the hyperplane.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLikeThe data matrix for which we want to get the confidence scores.

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Perceptron.ts:230 (opens in a new tab)

densify()

Convert coefficient matrix to dense array format.

Converts the coef\_ member (back) to a numpy.ndarray. This is the default format of coef\_ and is required for fitting, so calling this method is only required on models that have previously been sparsified; otherwise, it is a no-op.

Signature

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

Parameters

NameType
optsobject

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:265 (opens in a new tab)

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/Perceptron.ts:211 (opens in a new tab)

fit()

Fit linear model with Stochastic Gradient Descent.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?anyTraining data.
opts.coef_init?ArrayLike[]The initial coefficients to warm-start the optimization.
opts.intercept_init?ArrayLikeThe initial intercept to warm-start the optimization.
opts.sample_weight?ArrayLikeWeights applied to individual samples. If not provided, uniform weights are assumed. These weights will be multiplied with class_weight (passed through the constructor) if class_weight is specified.
opts.y?ArrayLikeTarget values.

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:291 (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/Perceptron.ts:354 (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/Perceptron.ts:151 (opens in a new tab)

partial_fit()

Perform one epoch of stochastic gradient descent on given samples.

Internally, this method uses max\_iter \= 1. Therefore, it is not guaranteed that a minimum of the cost function is reached after calling it once. Matters such as objective convergence, early stopping, and learning rate adjustments should be handled by the user.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?anySubset of the training data.
opts.classes?ArrayLikeClasses across all calls to partial_fit. Can be obtained by via np.unique(y\_all), where y_all is the target vector of the entire dataset. This argument is required for the first call to partial_fit and can be omitted in the subsequent calls. Note that y doesn’t need to contain all labels in classes.
opts.sample_weight?ArrayLikeWeights applied to individual samples. If not provided, uniform weights are assumed.
opts.y?ArrayLikeSubset of the target values.

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:391 (opens in a new tab)

predict()

Predict class labels for samples in X.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLikeThe data matrix for which we want to get the predictions.

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Perceptron.ts:443 (opens in a new tab)

score()

Return the mean accuracy on the given test data and labels.

In multi-label classification, this is the subset accuracy which is a harsh metric since you require for each sample that each label set be correctly predicted.

Signature

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

Parameters

NameTypeDescription
optsobject-
opts.X?ArrayLike[]Test samples.
opts.sample_weight?ArrayLikeSample weights.
opts.y?ArrayLikeTrue labels for X.

Returns

Promise<number>

Defined in: generated/linear_model/Perceptron.ts:478 (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.coef_init?string | booleanMetadata routing for coef\_init parameter in fit.
opts.intercept_init?string | booleanMetadata routing for intercept\_init parameter in fit.
opts.sample_weight?string | booleanMetadata routing for sample\_weight parameter in fit.

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:529 (opens in a new tab)

set_partial_fit_request()

Request metadata passed to the partial\_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_partial_fit_request(opts: object): Promise<any>;

Parameters

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

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:578 (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/Perceptron.ts:622 (opens in a new tab)

sparsify()

Convert coefficient matrix to sparse format.

Converts the coef\_ member to a scipy.sparse matrix, which for L1-regularized models can be much more memory- and storage-efficient than the usual numpy.ndarray representation.

The intercept\_ member is not converted.

Signature

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

Parameters

NameType
optsobject

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:659 (opens in a new tab)

Properties

_isDisposed

boolean = false

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

_isInitialized

boolean = false

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

_py

PythonBridge

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

id

string

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

opts

any

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

Accessors

classes_

The unique classes labels.

Signature

classes_(): Promise<ArrayLike>;

Returns

Promise<ArrayLike>

Defined in: generated/linear_model/Perceptron.ts:685 (opens in a new tab)

coef_

Weights assigned to the features.

Signature

coef_(): Promise<ArrayLike[][]>;

Returns

Promise<ArrayLike[][]>

Defined in: generated/linear_model/Perceptron.ts:708 (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/Perceptron.ts:804 (opens in a new tab)

intercept_

Constants in decision function.

Signature

intercept_(): Promise<ArrayLike[]>;

Returns

Promise<ArrayLike[]>

Defined in: generated/linear_model/Perceptron.ts:731 (opens in a new tab)

loss_function_

The function that determines the loss, or difference between the output of the algorithm and the target values.

Signature

loss_function_(): Promise<any>;

Returns

Promise<any>

Defined in: generated/linear_model/Perceptron.ts:754 (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/Perceptron.ts:779 (opens in a new tab)

n_iter_

The actual number of iterations to reach the stopping criterion. For multiclass fits, it is the maximum over every binary fit.

Signature

n_iter_(): Promise<number>;

Returns

Promise<number>

Defined in: generated/linear_model/Perceptron.ts:829 (opens in a new tab)

py

Signature

py(): PythonBridge;

Returns

PythonBridge

Defined in: generated/linear_model/Perceptron.ts:138 (opens in a new tab)

Signature

py(pythonBridge: PythonBridge): void;

Parameters

NameType
pythonBridgePythonBridge

Returns

void

Defined in: generated/linear_model/Perceptron.ts:142 (opens in a new tab)

t_

Number of weight updates performed during training. Same as (n\_iter\_ \* n\_samples + 1).

Signature

t_(): Promise<number>;

Returns

Promise<number>

Defined in: generated/linear_model/Perceptron.ts:852 (opens in a new tab)