more hidden layers

This commit is contained in:
Gustav Louw 2018-04-01 00:59:20 -07:00
parent c74ab3ab22
commit bcf16644d2
1 changed files with 2 additions and 2 deletions

4
test.c
View File

@ -134,8 +134,8 @@ int main()
// Learning rate is annealed and thus not constant.
// It can be fine tuned along with the number of hidden layers.
// Feel free to modify the anneal rate as well.
const int nhid = 8;
float rate = 0.5f;
const int nhid = 28;
float rate = 1.0f;
const float anneal = 0.99f;
// Load the training set.
const Data data = build("semeion.data", nips, nops);