Style overhaul, and clarify some comments.

This commit is contained in:
Marcus Edel
2015-05-04 21:13:34 +02:00
parent 609ee9c7ad
commit 89fb9ec142
@@ -39,15 +39,15 @@ class FullConnection
public:
/**
* Create the FullConnection object using the specified input layer, output
* layer, optimizer and weight initialize rule.
* layer, optimizer and weight initialization rule.
*
* @param InputLayerType The input layer which is connected with the output
* layer.
* @param OutputLayerType The output layer which is connected with the input
* layer.
* @param OptimizerType The optimizer used to update the weight matrix.
* @param WeightInitRule The weight initialize rule used to initialize the
* weight matrix.
* @param WeightInitRule The weights initialization rule used to initialize the
* weights matrix.
*/
FullConnection(InputLayerType& inputLayer,
OutputLayerType& outputLayer,
@@ -62,6 +62,17 @@ class FullConnection
inputLayer.OutputSize() * inputLayer.LayerSlices());
}
/**
* Create the FullConnection object using the specified input layer, output
* layer and weight initialization rule.
*
* @param InputLayerType The input layer which is connected with the output
* layer.
* @param OutputLayerType The output layer which is connected with the input
* layer.
* @param WeightInitRule The weights initialization rule used to initialize the
* weights matrix.
*/
FullConnection(InputLayerType& inputLayer,
OutputLayerType& outputLayer,
WeightInitRule weightInitRule = WeightInitRule()) :