Skip to main content
. 2020 Jun 12;20(12):3344. doi: 10.3390/s20123344
Algorithm 1 Learning Parameters Update Mechanism
1: Input: (x(i), y(i)) as training data; η as learning rate; E(θ) is a gradient of loss (error) function E(θ) with respect to the θ parameter; momentum factor (m)
2: Output: For each training pair, update the learning parameters using the equation
θ=θ-η.∇E(θ;x(i);y(i))
3: if stopping condition is met
4: return parameter θ.