Home > @josh-brown/vector > LearningAlgorithm
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