From: Vsevolod Stakhov Date: Mon, 12 Sep 2016 17:24:28 +0000 (+0100) Subject: [Minor] Do not use shortcut ANNs X-Git-Tag: 1.4.0~433 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d886209d50ba5263645006249738d44f163efe8d;p=rspamd.git [Minor] Do not use shortcut ANNs --- diff --git a/src/lua/lua_fann.c b/src/lua/lua_fann.c index dd100256e..6df5d9470 100644 --- a/src/lua/lua_fann.c +++ b/src/lua/lua_fann.c @@ -113,10 +113,9 @@ lua_fann_create (lua_State *L) layers[i] = luaL_checknumber (L, i + 2); } - f = fann_create_shortcut_array (nlayers, layers); + f = fann_create_standard_array (nlayers, layers); fann_set_activation_function_hidden (f, FANN_SIGMOID_SYMMETRIC); fann_set_activation_function_output (f, FANN_SIGMOID_SYMMETRIC); - fann_randomize_weights (f, -0.1, 0.1); if (f != NULL) { pfann = lua_newuserdata (L, sizeof (gpointer));