GD Subroutine

public subroutine GD(format_str, output_str)

GRADIENT DESCENT

Gradient Descent method. This optimization method is based in the fact that the gradient of a function points in its maximum growth direction. In order to minimize it, we'll go in the opposite direction (). Of course, this is done by updating x (and ) iteratively.

HYPER PARAMETERS

x : real*8, dimension(dimx) Initial guess. Must have as many dimensions as the input variable has (obviously).

LR : real*8 Learning Rate. Related to the iteration step.

eps : real*8 Minimum relative error for stopping. If a relative step (step divided by the current x) is smaller than eps, then the process stops and we consider the optimization as done.

Nmax : integer, optional. Default = 1,000,000 Maximum number of iterations.

Arguments

Type IntentOptional Attributes Name
character(len=20) :: format_str

formatting string

character(len=1000) :: output_str

Actual x and y values for reportting.


Calls

proc~~gd~~CallsGraph proc~gd GD proc~dfn_dx dfn_dx proc~gd->proc~dfn_dx proc~fn fn proc~gd->proc~fn proc~format_data format_data proc~gd->proc~format_data proc~handle_hyp_file handle_hyp_file proc~gd->proc~handle_hyp_file proc~check_hprparams check_hprparams proc~handle_hyp_file->proc~check_hprparams proc~check_status check_status proc~handle_hyp_file->proc~check_status

Called by

proc~~gd~~CalledByGraph proc~gd GD proc~handle_main_file handle_main_file proc~handle_main_file->proc~gd program~main main program~main->proc~handle_main_file