関数ML_ReLU マニュアル

(The documentation of function ML_ReLU)

Last Update: 2024/10/9


◆機能・用途(Purpose)

ReLU関数を計算する。
Calculate an ReLU function.


◆形式(Format)

#include <machine_learning/mathfunc.h>
inline double ML_ReLU(const double y)


◆引数(Arguments)

y ReLU関数の計算に用いる\(y\)の値。
The value of \(y\) used in the calculation of the ReLU function.


◆戻り値(Return value)

計算したReLU関数の\(y\)での値。 ReLU関数の定義は 計算式 参照。
The value of the ReLU function at \(y\), defined by the formula.


◆使用例(Example)

double x=ML_ReLU(1.0);