兰心开源队——openGauss完整评注代码 #42

Open
zpc_gitlink wants to merge 118 commits from zpc_gitlink/openGauss-server:master into master
1 changed files with 6 additions and 0 deletions
Showing only changes of commit 5a196e8096 - Show all commits

View File

@ -22,6 +22,12 @@
* ---------------------------------------------------------------------------------------
*/
/*Gradient Descent is a commonly used optimization algorithm, which is used to solve
the minimum value of the objective function. It is an iterative algorithm. In each iteration,
the gradient (or approximate gradient) of the objective function is calculated, and then the
parameters are updated along the negative gradient direction until the minimum value that
meets the conditions is reached.*/
#include "postgres.h"
#include "executor/executor.h"
#include "utils/builtins.h"