Algorithm 1.
1: | Load observed data | |
2: | Initialize deep learning models, optimization model, learning rate strategy | |
3: | for n_epochs do | |
4: | ||
5: | while , do | |
6: | if is True then | |
7: | ||
8: | ||
9: | end if | |
10: | ||
11: | Compute | ▷ Equation 27 |
12: | Compute iff | ▷ Equation 28 |
13: | Compute iff | ▷ Equation 29 |
14: | Compute , iff | ▷ Equations 30,31 |
15: | ||
16 | Compute | |
17: | if clip_gradients then | |
18 | clip_gradients | |
19: | end if | |
20: | optimization_step() | |
21: | ||
22: | end while | |
23: | register_lr(mean_loss) | ▷ Reduces LR if necessary |
24: | end for | |
25: | Save results |