Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 573 Bytes

File metadata and controls

15 lines (9 loc) · 573 Bytes

Home > @josh-brown/vector > LearningAlgorithm

LearningAlgorithm type

An function which, given an initial value of theta and a CostFunction, will compute the optimal value of theta

Signature:

export type LearningAlgorithm = (initialTheta: Vector, costFn: CostFunction) => Vector;

References: Vector, CostFunction