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.

14 lines (13 loc) 309 B
const EncogError = require(PATHS.ERROR_HANDLING + 'encog'); /** * Used by the neural network classes to indicate an error. */ class FreeformNetworkError extends EncogError { /** * @inheritDoc */ constructor(message) { super(message); } } module.exports = FreeformNetworkError;