|
| LayerData (const LayerData &other) |
| copy c'tor of LayerData More...
|
|
| LayerData (const_iterator_type itInputBegin, const_iterator_type itInputEnd, ModeOutputValues eModeOutput=ModeOutputValues::DIRECT) |
| c'tor of LayerData More...
|
|
| LayerData (LayerData &&other) |
| move c'tor of LayerData More...
|
|
| LayerData (size_t inputSize) |
| c'tor of LayerData More...
|
|
| LayerData (size_t size, const_iterator_type itWeightBegin, iterator_type itGradientBegin, std::shared_ptr< std::function< double(double)> > activationFunction, std::shared_ptr< std::function< double(double)> > inverseActivationFunction, ModeOutputValues eModeOutput=ModeOutputValues::DIRECT) |
| c'tor of LayerData More...
|
|
| LayerData (size_t size, const_iterator_type itWeightBegin, std::shared_ptr< std::function< double(double)> > activationFunction, ModeOutputValues eModeOutput=ModeOutputValues::DIRECT) |
| c'tor of LayerData More...
|
|
| ~LayerData () |
|
std::shared_ptr< std::function< double(double)> > | activationFunction () const |
|
void | clear () |
| clear the values and the deltas More...
|
|
void | clearDropOut () |
| clear the drop-out-data for this layer More...
|
|
iterator_type | deltasBegin () |
| returns iterator to the begin of the deltas (back-propagation) More...
|
|
const_iterator_type | deltasBegin () const |
| returns const iterator to the begin of the deltas (back-propagation) More...
|
|
iterator_type | deltasEnd () |
| returns iterator to the end of the deltas (back-propagation) More...
|
|
const_iterator_type | deltasEnd () const |
| returns const iterator to the end of the deltas (back-propagation) More...
|
|
const_dropout_iterator | dropOut () const |
| return the begin of the drop-out information More...
|
|
iterator_type | gradientsBegin () |
| returns iterator to the begin of the gradients More...
|
|
const_iterator_type | gradientsBegin () const |
| returns const iterator to the begin of the gradients More...
|
|
bool | hasDropOut () const |
| has this layer drop-out turned on? More...
|
|
std::shared_ptr< std::function< double(double)> > | inverseActivationFunction () const |
|
ModeOutputValues | outputMode () const |
| returns the output mode More...
|
|
container_type | probabilities () const |
| computes the probabilities from the current node values and returns them More...
|
|
template<typename Iterator > |
void | setDropOut (Iterator itDrop) |
| set the drop-out info for this layer More...
|
|
void | setInput (const_iterator_type itInputBegin, const_iterator_type itInputEnd) |
| change the input iterators More...
|
|
size_t | size () const |
| return the size of the layer More...
|
|
iterator_type | valueGradientsBegin () |
| returns iterator to the begin of the gradients of the node values More...
|
|
const_iterator_type | valueGradientsBegin () const |
| returns const iterator to the begin of the gradients More...
|
|
iterator_type | valueGradientsEnd () |
| returns iterator to the end of the gradients of the node values More...
|
|
const_iterator_type | valueGradientsEnd () const |
| returns const iterator to the end of the gradients More...
|
|
iterator_type | valuesBegin () |
| returns iterator to the begin of the (node) values More...
|
|
const_iterator_type | valuesBegin () const |
| returns const iterator to the begin of the (node) values More...
|
|
iterator_type | valuesEnd () |
| returns iterator to the end of the (node) values More...
|
|
const_iterator_type | valuesEnd () const |
| returns iterator to the end of the (node) values More...
|
|
const_iterator_type | weightsBegin () const |
| returns const iterator to the begin of the weights for this layer More...
|
|