diff options
author | jvech <jmvalenciae@unal.edu.co> | 2023-08-08 08:55:34 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2023-08-08 08:55:34 -0500 |
commit | fff35116eed83c9368e8bd07d02c9e95c447e018 (patch) | |
tree | 1394111719a7482348b6c871cdac5d856685df01 /doc/main.tex | |
parent | aeb27a882087ee447a155bd589bd3712050a16f5 (diff) |
add: activation and cost functions added
Training function were fixed and new activation and cost function were
implemented
Diffstat (limited to 'doc/main.tex')
-rw-r--r-- | doc/main.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/main.tex b/doc/main.tex index 00028f9..d8f90c3 100644 --- a/doc/main.tex +++ b/doc/main.tex @@ -43,9 +43,10 @@ \pdv{\xi}{\omega^l_{ij}} = & \delta_j^l \pdv{z_j^l}{\omega_{ij}} \\ \delta_j^l = & \pdv{\xi}{z_j^l} \\ \pdv{z_j^l}{\omega_{ij}} = & a_i^{l-1} \\ + \pdv{\xi}{\omega_{ij}} = & \delta^l_{j} a_i^{l-1} \\ \end{eqnarray} -Output Layer +Output Layer \begin{eqnarray} \delta_j^L =& \pdv{\xi}{z_j^L} = \pdv{\xi}{a_j^L} \pdv{a_j^L}{z_j^L}\\ |