#include <nkern_neuron.h>
Public Methods | |
NeuronLayer (int NumNeurons, int NumInputsPerNeuron) | |
Public Attributes | |
vector< Neuron > | m_vecNeurons |
int | m_NumNeurons |
int | m_NumInputsPerNeuron |
|
Definition at line 41 of file neuron.cpp. References m_vecNeurons.
00042 : m_NumNeurons(NumNeurons), 00043 m_NumInputsPerNeuron(NumInputsPerNeuron) 00044 { 00045 for (int i=0; i<NumNeurons; i++) 00046 00047 m_vecNeurons.push_back(Neuron(NumInputsPerNeuron)); 00048 } |
|
Definition at line 58 of file nkern_neuron.h. |
|
Definition at line 57 of file nkern_neuron.h. |
|
Definition at line 56 of file nkern_neuron.h. Referenced by NeuronLayer. |