neataptic
Version:
Architecture-free neural network library with genetic algorithm implementations
20 lines (17 loc) • 460 B
JavaScript
/*******************************************************************************
GATING
*******************************************************************************/
// Specifies how to gate a connection between two groups of multiple neurons
var gating = {
OUTPUT: {
name: 'OUTPUT'
},
INPUT: {
name: 'INPUT'
},
SELF: {
name: 'SELF'
}
};
/* Export */
module.exports = gating;