|
Algorithm 1 Mini-batch gradient ascent. |
-
Input:
The number of employed features F, the training feature vector , the training ground-truth depth vector , the number of epochs , the batch size , and the learning rate
-
Output:
The estimates of , , and
1: Initialization
, , and are initialized with random values drawn from
2: while
do
3:
4: while
do
5: if
then
6:
7:
8:
9: check for termination
10: else
11:
12:
13:
14: check for termination
15: end if
16:
17: end while
18:
19: end while
|