Activation Softmax Forward done

This commit is contained in:
2026-07-30 18:56:27 +02:00
parent e6e9fe1026
commit 70e80327ef
15 changed files with 2637 additions and 43 deletions
+18 -2
View File
@@ -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