From d886209d50ba5263645006249738d44f163efe8d Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 12 Sep 2016 18:24:28 +0100 Subject: [PATCH] [Minor] Do not use shortcut ANNs --- src/lua/lua_fann.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)); -- 2.39.5