Activation Softmax Forward done
This commit is contained in:
@@ -143,7 +143,7 @@ struct model{
|
||||
*
|
||||
* Computes:
|
||||
* @code
|
||||
* model.add_activation_ReLU(3,4);
|
||||
* model.add_activation_relu(3,4);
|
||||
* @endcode
|
||||
*
|
||||
*
|
||||
@@ -151,7 +151,23 @@ struct model{
|
||||
*
|
||||
* @note This function is convenient, but it allocates a new layer.
|
||||
*/
|
||||
bool add_activation_ReLU();
|
||||
bool add_activation_relu();
|
||||
|
||||
/**
|
||||
* @brief Adds a activation Softmax layer to the model.
|
||||
*
|
||||
* Computes:
|
||||
* @code
|
||||
* model.add_activation_softmax(3,4);
|
||||
* @endcode
|
||||
*
|
||||
*
|
||||
* @return true if layer is added
|
||||
*
|
||||
* @note This function is convenient, but it allocates a new layer.
|
||||
*/
|
||||
bool add_activation_softmax();
|
||||
|
||||
|
||||
/**
|
||||
* @brief Loops over all layers forward function
|
||||
|
||||
Reference in New Issue
Block a user