ff net: inner representation fix
This commit is contained in:
@@ -20,7 +20,7 @@ namespace FeedForward {
|
|||||||
* @brief Constructor for Network
|
* @brief Constructor for Network
|
||||||
* @param _inputSize is number of inputs to network
|
* @param _inputSize is number of inputs to network
|
||||||
*/
|
*/
|
||||||
inline Network(size_t _inputSize):NeuralNetwork::Network(_inputSize,_inputSize),layers(),_partialInput(_inputSize),_partialOutput(_inputSize) {
|
inline Network(size_t _inputSize):NeuralNetwork::Network(_inputSize,_inputSize),layers(),_partialInput(_inputSize+1),_partialOutput(_inputSize+1) {
|
||||||
appendLayer(_inputSize);
|
appendLayer(_inputSize);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user