Fixed the missing variables epsilon and reg_lambda

pull/5/head
Jeremy Tuloup 2016-06-16 18:12:01 +02:00
parent eee67dbc7e
commit be3169f57a
1 changed files with 4 additions and 1 deletions

View File

@ -314,7 +314,10 @@
"num_examples = len(X) # training set size\n",
"nn_input_dim = 2 # input layer dimensionality\n",
"nn_output_dim = 2 # output layer dimensionality\n",
"\n"
"\n",
"# Gradient descent parameters (I picked these by hand)\n",
"epsilon = 0.01 # learning rate for gradient descent\n",
"reg_lambda = 0.01 # regularization strength"
]
},
{