Hi there,
I am totally new to neural networks and am trying to train a network now. I am using a php script from tremani.nl for the neural network. Now what I wonder is that. How long does it usually take to train a network? I mean I am training it now for 24 hours and it´s still not finished, but probably I only set up wrong parameters?
Here is what I am trying to train:
$n->addTestData(array ("0.0001", 0.000615, 0, 0.01, 0.225, 0, 0, 0.00000166666666667), array (0.0027));
$n->addTestData(array ("0.0001", 0.0000000086, 0, 0.001, 0.025, 0, 0, 0), array (0.00085));
$n->addTestData(array ("0.0001", 0.00000006175, 0, 0, 0.025, 0, 0, 0), array (0.000891));
$n->addTestData(array ("0.0001", 0.000000005725, 0, 0, 0.025, 0, 0, 0), array (0.0015));
$n->addTestData(array ("0.0001", 0.001015, 0, 0.021, 0.225, 0, 0, 0.00000583333333333), array (0.002895));
$n->addTestData(array ("0.0001", 0.00000013375, 0, 0.003, 0.025, 0, 0, 0), array (0.001558));
$n->addTestData(array ("0.0001", 0.00018425, 0, 0.015, 0.025, 0, 0, 0.00000166666666667), array (0.008945));
So basically I got 8 inputting neurons and 1 output. For the correlation isn´t too big, I thought I should use probably more neurons between the input and the output layer, so I use 320 neurons in between.
For mean square error I use 0.0003 (since all resulting numbers are rather little, so that would probably be alike a +_20% error range).
For learning rate I use 0.1 and for momentum I use 0.8.
So basically I would be interested wether my values are chosen totally wrong? Additionally to that I would like to know, how long a regular neural network does need to train on average?
Thx :)