UNPKG

encog

Version:

Encog is a NodeJs ES6 framework based on the Encog Machine Learning Framework by Jeff Heaton, plus some the of basic data manipulation helpers.

16 lines (14 loc) 262 B
class UpdateRule { /** * @param {StochasticGradientDescent} training */ init(training) { } /** * @param {Array} gradients * @param {Array} weights */ update(gradients, weights) { } } module.exports = UpdateRule;