diff --git a/_posts/2015-07-12-basic-python-network.markdown b/_posts/2015-07-12-basic-python-network.markdown index a902885..d39850e 100755 --- a/_posts/2015-07-12-basic-python-network.markdown +++ b/_posts/2015-07-12-basic-python-network.markdown @@ -641,11 +641,11 @@ var ind_q = 'Machine Learning'; var ind_l = ''; var ind_chnl = 'none'; var ind_n = 15; -var ind_d = 'http://www.indeed.com'; +var ind_d = 'https://www.indeed.com'; var ind_t = 40; var ind_c = 30; - +
In Part 1, I laid out the basis for backpropagation in a simple neural network. Backpropagation allowed us to measure how each weight in the network contributed to the overall error. This ultimately allowed us to change these weights using a different algorithm, Gradient Descent. +
In Part 1, I laid out the basis for backpropagation in a simple neural network. Backpropagation allowed us to measure how each weight in the network contributed to the overall error. This ultimately allowed us to change these weights using a different algorithm, Gradient Descent.
The takeaway here is that backpropagation doesn't optimize! It moves the error information from the end of the network to all the weights inside the network so that a different algorithm can optimize those weights to fit our data. We actually have a plethora of different nonlinear optimization methods that we could use with backpropagation:
@@ -896,11 +896,11 @@ var ind_q = 'Machine Learning'; var ind_l = ''; var ind_chnl = 'none'; var ind_n = 15; -var ind_d = 'http://www.indeed.com'; +var ind_d = 'https://www.indeed.com'; var ind_t = 40; var ind_c = 30; - +
As discovered in the previous post, a neural network is a glorified search problem. Each node in the neural network is searching for correlation between the input data and the correct output data.
+As discovered in the previous post, a neural network is a glorified search problem. Each node in the neural network is searching for correlation between the input data and the correct output data.
@@ -63,7 +63,7 @@ Consider the graphic above from the previous post. The line represents the error