aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua')
-rw-r--r--src/lua/lua_fann.c3
1 files changed, 1 insertions, 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));