Skip to content

Latest commit

 

History

History
62 lines (30 loc) · 991 Bytes

File metadata and controls

62 lines (30 loc) · 991 Bytes

Home > @josh-brown/vector > Regressor

Regressor interface

A machine learning model with a continuous numeric target

Signature:

export interface Regressor<H> 

Methods

Method

Description

getHyperParameters()

Return the full set of hyperparameters used to train the model, including defaults.

predict(data)

Uses the learned parameters to make predictions based on a set of input data.

train(data, target)

Learns the optimal set of parameters for the model.