I'm curently working with backpropagation algorithm For mining data. I'm trying to apply several algorithm from related paper to my cases. Here, I find that, one of them said that "Backpropagation algorithm is applied to update the weights(w, v) and minimizing the following function":
θ(w,v) = F(w,v) + P(w,v)
where F(w,v) is cross entropy function and P(w,v) is penalty term. I've not got the meaning of this, since I've found that "minimizing" in programming term has several meaning.
Please give me some suggestion, what should I do with the function, and how to applied it into backpropagation.
Thank you.