Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 697 Bytes

File metadata and controls

17 lines (10 loc) · 697 Bytes

Home > @josh-brown/vector > Kernel

Kernel type

A function which takes a Matrix of data (and optionally another Matrix of data on which the kernel was trained) and returns a new Matrix which will be used to train a machine learning model.

Generally intended for use with a SupportVectorMachineClassifier.

Signature:

export type Kernel = (data: Matrix, trainingData?: Matrix) => Matrix;

References: Matrix