This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Basics of Traditional Network learning via BP (#18)
* Add Basics of Traditional Network learning via BP * Fix file paths * Add apostrophe
- Loading branch information
1 parent
e24143a
commit 15e196f
Showing
5 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
9 changes: 9 additions & 0 deletions
9
sections/introduction to neural networks/how does a neural network learn/traditiontal.tex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
The traditional approach of optimizing the connection weigths to improve the network's accuracy is named backpropagation. | ||
|
||
\begin{quote} | ||
\emph{"The Backpropagation algorithm is a supervised learning method for multilayer feed-forward networks from the field of Artificial Neural Networks. } | ||
|
||
\emph{Feed-forward neural networks are inspired by the information processing of one or more neural cells, called a neuron. A neuron accepts input signals via its dendrites, which pass the electrical signal down to the cell body. The axon carries the signal out to synapses, which are the connections of a cell’s axon to other cell’s dendrites."} \cite{backprop_from_scratch} | ||
\end{quote} | ||
|
||
Backpropagation uses mathematical approaches to calculate changes to the weights of its connections, so that the output becomes more accurate every time the weights are updated. |
File renamed without changes.