| Algorithm 1 Learning Parameters Update Mechanism |
| 1: Input:
as training data; as learning rate; is a gradient of loss (error) function with respect to the parameter; momentum factor () 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 θ. |