This commit is contained in:
Valk Richard Li
2019-11-14 23:24:26 +08:00
committed by GitHub
parent 8502ef20cf
commit bccd2089c3

View File

@@ -60,6 +60,6 @@ var tanh=func(__x)
var relu=func(__x)
{
if(x>=0){return x;}
if(x>=0){return __x;}
else{return 0;}
};