#include <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 50 of file neuron.h. Referenced by NeuronLayer. |