songcser / encog-java

Automatically exported from code.google.com/p/encog-java
0 stars 0 forks source link

my program #35

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication2;

import java.io.*;
import java.util.*;
import java.lang.*;
import org.encog.neural.activation.ActivationLinear;
import org.encog.neural.activation.ActivationTANH;
import org.encog.neural.activation.ActivationSIN;
import org.encog.neural.networks.synapse.*;
import org.encog.neural.networks.layers.Layer;
import org.encog.neural.activation.ActivationSigmoid;
import org.encog.neural.data.NeuralData;
import org.encog.neural.data.NeuralDataPair;
import org.encog.neural.data.NeuralDataSet;
import org.encog.neural.data.basic.BasicNeuralDataSet;
import org.encog.neural.networks.BasicNetwork;
import org.encog.neural.networks.*;
import org.encog.neural.networks.layers.BasicLayer;
import org.encog.neural.networks.logic.FeedforwardLogic;
import org.encog.neural.networks.training.Train;
import org.encog.neural.networks.training.propagation.back.Backpropagation;

/**
*
* @author Administrator
*/
public class NewClass {

double[][] FIN = null;
double[][] FOU = null;
boolean data = false;

NewClass(String str) {
try {

FileReader fr = new FileReader(str);

BufferedReader br = new BufferedReader(fr);
String myreadline;

Vector v = new Vector();
while (br.ready()) {
myreadline = br.readLine();
v.addElement(myreadline);
}
br.close();

if (v.size() > 0) {
data = true;
FIN = new double[v.size()][11];
FOU = new double[v.size()][1];
String[] sS;
String line;
for (int i = 0; i < v.size(); i++) {
line = (String) v.elementAt(i);
sS = line.split(",");
for(String ff:sS)
{
System.out.print(ff);
System.out.print(",");
}
System.out.println("");
FIN[i][0] = Double.parseDouble(sS[0]);
FIN[i][1] = Double.parseDouble(sS[1]);
FIN[i][2] = Double.parseDouble(sS[2]);
FIN[i][3] = Double.parseDouble(sS[3]);
FIN[i][4] = Double.parseDouble(sS[4]);
FIN[i][5] = Double.parseDouble(sS[5]);
FIN[i][6] = Double.parseDouble(sS[6]);
FIN[i][7] = Double.parseDouble(sS[7]);
FIN[i][8] = Double.parseDouble(sS[8]);
FIN[i][9] = Double.parseDouble(sS[9]);
FIN[i][10] = Double.parseDouble(sS[10]);
FOU[i][0] = Double.parseDouble(sS[11]);
}
}
} catch (IOException e) {
}

}

// synchronized void run() {
void run() {
if (data) {

BasicNetwork network = new BasicNetwork();
Layer inputLayer = new BasicLayer(new ActivationLinear(), true, 11);
Layer hiddenLayer = new BasicLayer(new ActivationSIN(), true, 18);
Layer outputLayer = new BasicLayer(new ActivationTANH(), true, 1);

Synapse synapseInputToHidden = new WeightedSynapse(inputLayer, hiddenLayer);
Synapse synapseHiddenToOutput = new WeightedSynapse(hiddenLayer, outputLayer);

inputLayer.getNext().add(synapseInputToHidden);
hiddenLayer.getNext().add(synapseHiddenToOutput);

network.tagLayer(BasicNetwork.TAG_INPUT, inputLayer);
network.tagLayer(BasicNetwork.TAG_OUTPUT, outputLayer);

network.setLogic(new FeedforwardLogic());
network.getStructure().finalizeStructure();
network.reset();
NeuralDataSet trainingSet =
new BasicNeuralDataSet(FIN, FOU);
// train the neural network
final Train train =
new Backpropagation(network, trainingSet, 0.7, 0.8);
int epoch = 1;
do {
train.iteration();
System.out.println("Epoch #" + epoch + " Error:" + train.getError());
epoch++;
} while (train.getError() > 0.01);
}
}
}

Original issue reported on code.google.com by tangmingjiali2@gmail.com on 20 Apr 2010 at 11:34

GoogleCodeExporter commented 9 years ago
run:
/root/NetBeansProjects/JavaApplication2
26.360,24.610,26.370,-8.329,28.755,26.960,37.731,945200.000,24.648,41.549,47.183
,26.070,
26.070,26.370,26.360,-8.314,28.434,26.128,30.693,1703300.000,20.563,34.554,42.97
3,26.620,
26.620,26.360,26.070,-5.132,28.060,26.006,27.014,759100.000,28.310,32.473,39.473
,26.690,
26.690,26.070,26.620,-3.234,27.582,26.422,25.819,706000.000,29.296,31.414,36.787
,24.120,
24.120,26.620,26.690,-10.077,26.823,25.972,23.993,726600.000,0.000,20.942,31.505
,25.350,
25.350,26.690,24.120,-3.850,26.365,25.770,29.835,526000.000,20.131,20.672,27.894
,24.810,
24.810,24.120,25.350,-3.923,25.823,25.518,37.448,466100.000,22.186,21.177,25.655
,24.170,
24.170,25.350,24.810,-5.279,25.517,25.028,47.128,473500.000,1.946,14.766,22.025,
23.680,
23.680,24.810,24.170,-6.860,25.424,24.426,28.951,596700.000,0.000,9.844,17.965,2
6.050,
26.050,24.170,23.680,2.591,25.392,24.812,48.229,1280400.000,78.738,32.809,22.913
,26.070,
26.070,23.680,26.050,2.788,25.363,24.956,50.000,1008800.000,79.402,48.340,31.389
,27.220,
27.220,26.050,26.070,6.837,25.478,25.438,53.304,1462600.000,100.000,65.560,42.77
9,29.820,
29.820,26.070,27.220,15.590,25.798,26.568,63.480,2937800.000,100.000,77.040,54.1
99,29.550,
29.550,27.220,29.820,13.288,26.084,27.742,79.162,2294900.000,95.603,83.227,63.87
5,30.990,
30.990,29.820,29.550,15.760,26.771,28.730,79.622,2016400.000,100.000,88.818,72.1
90,30.360,
30.360,29.550,30.990,11.323,27.272,29.588,78.876,1013700.000,91.382,89.673,78.01
7,30.790,
30.790,30.990,30.360,10.477,27.870,30.302,85.213,1252200.000,97.264,92.203,82.74
6,33.650,
33.650,30.360,30.790,16.767,28.818,31.068,92.353,1719000.000,100.000,94.802,86.7
65,30.520,
30.520,30.790,33.650,3.451,29.502,31.262,67.837,2063600.000,58.816,82.807,85.445
,32.680,
32.680,33.650,30.520,8.337,30.165,31.600,72.529,1498900.000,87.203,84.272,85.054
,32.500,
32.500,30.520,32.680,5.492,30.808,32.028,69.270,847000.000,82.115,83.553,84.554,
32.960,
32.960,32.680,32.500,5.028,31.382,32.462,63.581,540700.000,83.171,83.426,84.178,
32.390,
32.390,32.500,32.960,2.374,31.639,32.210,61.973,722500.000,69.268,78.707,82.354,
32.980,
32.980,32.960,32.390,3.121,31.982,32.702,59.037,566900.000,79.635,79.016,81.241,
33.370,
33.370,32.390,32.980,3.569,32.220,32.840,63.974,687600.000,91.489,83.174,81.886,
32.560,
32.560,32.980,33.370,0.370,32.440,32.852,57.937,649300.000,65.176,77.174,80.315,
31.450,
31.450,33.370,32.560,-3.249,32.506,32.550,38.298,512300.000,29.712,61.354,73.995
,29.330,
29.330,32.560,31.450,-8.555,32.074,31.938,42.908,458200.000,0.000,40.903,62.964,
29.620,
29.620,31.450,29.330,-7.391,31.984,31.266,26.534,486000.000,7.178,29.661,51.863,
28.650,
28.650,29.330,29.620,-9.281,31.581,30.322,23.666,357300.000,0.000,19.774,41.167,
28.730,
28.730,29.620,28.650,-7.928,31.204,29.556,19.481,269000.000,1.695,13.748,32.027,
27.560,
27.560,28.650,28.730,-10.123,30.664,28.778,17.928,292900.000,0.000,9.165,24.406,
28.250,
28.250,28.730,27.560,-6.612,30.250,28.562,19.004,175200.000,11.876,10.069,19.627
,27.970,
27.970,27.560,28.250,-5.980,29.749,28.232,14.096,2451700.000,7.057,9.065,16.106,
28.150,
28.150,28.250,27.970,-3.685,29.227,28.132,17.997,1113900.000,11.800,9.977,14.063
,30.020,
30.020,27.970,28.150,3.614,28.973,28.390,40.654,1442900.000,63.239,27.731,18.619
,30.100,
30.100,28.150,30.020,4.376,28.838,28.898,56.863,926500.000,100.000,51.820,29.686
,28.300,
28.300,30.020,30.100,-1.514,28.735,28.908,40.730,1012600.000,29.134,44.258,34.54
4,28.230,
28.230,30.100,28.300,-1.280,28.596,28.960,46.624,533000.000,26.378,38.298,35.795
,28.060,
28.060,28.300,28.230,-1.672,28.537,28.942,44.691,407800.000,19.685,32.094,34.561
,27.990,
27.990,28.230,28.060,-1.662,28.463,28.536,54.127,276600.000,16.929,27.039,32.054
,25.190,
25.190,28.060,27.990,-10.756,28.226,27.554,29.098,765400.000,0.000,18.026,27.378
,24.740,
24.740,27.990,25.190,-11.247,27.875,26.842,28.438,484200.000,0.000,12.017,22.258
,25.640,
25.640,25.190,24.740,-7.243,27.642,26.324,34.714,629100.000,16.791,13.609,19.375
,25.450,
25.450,24.740,25.640,-7.022,27.372,25.802,15.008,745800.000,13.246,13.488,17.412
,24.590,
24.590,25.640,25.450,-8.345,26.829,25.122,12.312,308100.000,0.000,8.992,14.606,2
5.800,
25.800,25.450,24.590,-2.269,26.399,25.244,31.399,1302300.000,32.615,16.866,15.35
9,27.140,
27.140,24.590,25.800,3.261,26.283,25.724,43.179,1118000.000,70.055,34.596,21.771
,24.420,
24.420,25.800,27.140,-5.722,25.902,25.480,32.732,753600.000,0.000,23.064,22.202,
24.020,
24.020,27.140,24.420,-5.797,25.498,25.194,31.739,832600.000,0.000,15.376,19.927,
22.850,
22.850,24.420,24.020,-8.541,24.984,24.846,37.338,470800.000,0.000,10.251,16.701,
23.520,
23.520,24.020,22.850,-5.226,24.817,24.390,43.552,380100.000,15.618,12.040,15.147
,25.190,
25.190,22.850,23.520,1.319,24.862,24.000,47.801,515100.000,54.545,26.208,18.834,
25.300,
25.300,23.520,25.190,1.901,24.828,24.176,49.261,477000.000,57.110,36.509,24.726,
23.360,
23.360,25.190,25.300,-5.114,24.619,24.044,44.524,475500.000,11.888,28.302,25.918
,24.490,
24.490,25.300,23.360,-0.484,24.609,24.372,44.126,407100.000,38.228,31.611,27.815
,25.020,
25.020,23.360,24.490,1.993,24.531,24.672,39.749,694600.000,50.583,37.935,31.189,
24.870,
24.870,24.490,25.020,2.329,24.304,24.608,52.896,425300.000,82.449,52.773,38.383,
25.900,
25.900,25.020,24.870,5.922,24.452,24.728,61.190,760900.000,100.000,68.515,48.427
,26.630,
26.630,24.870,25.900,7.757,24.713,25.382,73.744,936400.000,100.000,79.010,58.622
,26.890,
26.890,25.900,26.630,7.059,25.117,25.862,72.318,804500.000,100.000,86.007,67.750
,26.960,
26.960,26.630,26.890,5.887,25.461,26.250,64.874,572500.000,100.000,90.671,75.390
,27.370,
27.370,26.890,26.960,6.585,25.679,26.750,66.560,688800.000,100.000,93.781,81.520
,27.750,
27.750,26.960,27.370,7.044,25.924,27.120,96.802,1005000.000,100.000,95.854,86.29
8,27.670,
27.670,27.370,27.750,4.990,26.355,27.328,93.681,803500.000,97.546,96.418,89.671,
28.080,
28.080,27.750,27.670,5.113,26.714,27.566,93.466,425300.000,100.000,97.612,92.318
,26.780,
26.780,27.670,28.080,-0.409,26.890,27.530,70.450,585300.000,59.502,84.908,89.848
,25.990,
25.990,28.080,26.780,-3.748,27.002,27.254,51.016,458900.000,4.128,57.982,79.226,
25.590,
25.590,26.780,25.990,-5.120,26.971,26.822,37.317,346800.000,0.000,38.655,65.702,
26.070,
26.070,25.990,25.590,-3.140,26.915,26.502,40.509,331300.000,19.277,32.195,54.533
,26.800,
26.800,25.590,26.070,-0.394,26.906,26.246,48.394,283500.000,48.594,37.662,48.909
,26.970,
26.970,26.070,26.800,0.234,26.907,26.284,45.781,278100.000,55.422,43.582,47.134,
26.710,
26.710,26.800,26.970,-0.488,26.841,26.428,38.745,249200.000,44.980,44.048,46.105
,26.870,
26.870,26.970,26.710,0.437,26.753,26.684,41.489,355600.000,51.406,46.500,46.237,
27.470,
27.470,26.710,26.870,2.757,26.733,26.964,43.763,522600.000,75.502,56.168,49.547,
28.250,
28.250,26.870,27.470,5.607,26.750,27.254,66.819,593600.000,100.000,70.778,56.624
,27.350,
27.350,27.470,28.250,2.026,26.807,27.330,65.179,339100.000,66.165,69.241,60.830,
27.840,
27.840,28.250,27.350,3.142,26.992,27.556,74.617,507100.000,84.586,74.356,65.338,
26.730,
26.730,27.350,27.840,-1.387,27.106,27.528,56.346,496600.000,30.275,59.662,63.446
,26.580,
26.580,27.840,26.730,-2.125,27.157,27.350,47.619,246300.000,0.000,39.775,55.556,
25.620,
25.620,26.730,26.580,-5.248,27.039,26.824,37.523,143000.000,0.000,26.517,45.876,
25.100,
25.100,26.580,25.620,-6.525,26.852,26.374,35.802,241700.000,0.000,17.678,36.477,
25.370,
25.370,25.620,25.100,-5.045,26.718,25.880,37.024,328400.000,8.571,14.642,29.199,
25.300,
25.300,25.100,25.370,-4.748,26.561,25.594,29.333,138700.000,6.349,11.878,23.425,
23.920,
23.920,25.370,25.300,-8.723,26.206,25.062,12.991,320300.000,0.000,7.919,18.256,2
1.920,
21.920,25.300,23.920,-14.285,25.573,24.322,10.935,291200.000,0.000,5.279,13.931,
21.770,
21.770,23.920,21.920,-12.972,25.015,23.656,4.085,309900.000,0.000,3.519,10.460,2
2.560,
22.560,21.920,21.770,-7.869,24.487,23.094,16.852,199200.000,15.927,7.655,9.525,2
2.480,
22.480,21.770,22.560,-6.575,24.062,22.530,17.042,88700.000,14.761,10.024,9.691,2
2.840,
22.840,22.560,22.480,-3.580,23.688,22.314,25.267,170300.000,27.792,15.947,11.777
,22.350,
22.350,22.480,22.840,-4.328,23.361,22.400,25.403,204500.000,16.111,16.001,13.185
,22.580,
22.580,22.840,22.350,-2.289,23.109,22.562,24.865,124500.000,22.500,18.168,14.846
,24.790,
24.790,22.350,22.580,7.544,23.051,23.008,46.684,598400.000,85.552,40.629,23.440,
24.040,
24.040,22.580,24.790,4.864,22.925,23.320,50.850,335300.000,75.166,52.141,33.007,
23.270,
23.270,24.790,24.040,1.794,22.860,23.406,61.578,167600.000,49.669,51.317,39.111,
23.110,
23.110,24.040,23.270,0.570,22.979,23.558,61.473,81700.000,44.371,49.002,42.408,2
1.800,
21.800,23.270,23.110,-5.143,22.982,23.402,44.025,240800.000,0.000,32.668,39.161,
21.140,
21.140,23.110,21.800,-7.443,22.840,22.672,40.346,207300.000,0.000,21.779,33.367,
21.030,
21.030,21.800,21.140,-7.336,22.695,22.070,36.472,122500.000,0.000,14.519,27.084,
21.820,
21.820,21.140,21.030,-3.421,22.593,21.780,46.209,172900.000,21.011,16.683,23.617
,20.440,
20.440,21.030,21.820,-8.758,22.402,21.246,36.855,259000.000,0.000,11.122,19.452,
18.390,
18.390,21.820,20.440,-16.344,21.983,20.564,9.900,1291200.000,0.000,7.415,15.440,
17.630,
17.630,20.440,18.390,-17.102,21.267,19.862,9.887,967100.000,0.000,4.943,11.941,1
7.920,
17.920,18.390,17.630,-13.241,20.655,19.240,14.381,822000.000,5.142,5.009,9.630,1
7.540,
17.540,17.630,17.920,-12.658,20.082,18.384,13.972,501700.000,0.000,3.340,7.533,1
6.280,
16.280,17.920,17.540,-16.078,19.399,17.552,14.063,350000.000,0.000,2.226,5.764,1
5.980,
15.980,17.540,16.280,-15.077,18.817,17.070,14.754,612200.000,0.000,1.484,4.338,1
5.720,
15.720,16.280,15.980,-13.981,18.275,16.688,14.458,375100.000,0.000,0.989,3.222,1
5.870,
15.870,15.980,15.720,-10.637,17.759,16.278,6.442,201700.000,2.459,1.479,2.641,15
.160,
15.160,15.720,15.870,-11.309,17.093,15.802,7.143,389000.000,0.000,0.986,2.089,15
.420,
15.420,15.870,15.160,-7.058,16.591,15.630,16.018,353400.000,8.050,3.341,2.506,15
.270,
15.270,15.160,15.420,-6.198,16.279,15.488,18.617,587000.000,3.986,3.556,2.856,16
.790,
16.790,15.420,15.270,3.674,16.195,15.702,38.677,507200.000,59.058,22.056,9.256,1
7.200,
17.200,15.270,16.790,6.680,16.123,15.968,46.614,1173500.000,85.714,43.276,20.596
,15.680,
15.680,16.790,17.200,-1.613,15.937,16.072,44.318,555600.000,25.490,37.347,26.180
,15.840,
15.840,17.200,15.680,-0.333,15.893,16.156,48.638,231800.000,33.333,36.009,29.456
,16.320,
16.320,15.680,15.840,2.468,15.927,16.366,55.597,523200.000,56.863,42.960,33.958,
16.640,
16.640,15.840,16.320,3.877,16.019,16.336,56.962,376300.000,72.549,52.823,40.246,
16.340,
16.340,16.320,16.640,1.705,16.066,16.164,61.523,462600.000,57.843,54.497,44.996,
15.900,
15.900,16.640,16.340,-1.487,16.140,16.208,54.528,363900.000,32.642,47.212,45.735
,14.950,
14.950,16.340,15.900,-7.102,16.093,16.030,47.377,485100.000,0.000,31.475,40.981,
14.820,
14.820,15.900,14.950,-7.652,16.048,15.730,29.087,393400.000,0.000,20.983,34.315,
13.580,
13.580,14.950,14.820,-13.652,15.727,15.118,17.329,492200.000,0.000,13.989,27.540
,13.350,
13.350,14.820,13.580,-12.984,15.342,14.520,22.588,746800.000,0.000,9.326,21.468,
13.150,
13.150,13.580,13.350,-12.850,15.089,13.970,18.648,610500.000,0.000,6.217,16.385,
12.950,
12.950,13.350,13.150,-12.500,14.800,13.570,7.980,294000.000,0.000,4.145,12.305,1
1.860,
11.860,13.150,12.950,-17.375,14.354,12.978,0.000,327200.000,0.000,2.763,9.124,12
.110,
12.110,12.950,11.860,-12.884,13.901,12.684,5.285,439500.000,5.580,3.702,7.317,13
.020,
13.020,11.860,12.110,-4.046,13.569,12.618,22.308,587700.000,28.713,12.039,8.891,
13.760,
13.760,12.110,13.020,3.033,13.355,12.740,38.076,1545400.000,61.489,28.522,15.435
,13.370,
13.370,13.020,13.760,1.311,13.197,12.824,36.190,900200.000,51.014,36.019,22.296,
13.930,
13.930,13.760,13.370,6.271,13.108,13.238,53.829,680200.000,100.000,57.346,33.980
,14.130,
14.130,13.370,13.930,7.346,13.163,13.642,58.590,1007900.000,100.000,71.564,46.50
8,13.560,
13.560,13.930,14.130,2.852,13.184,13.750,54.175,695500.000,74.890,72.673,55.229,
13.930,
13.930,14.130,13.560,5.037,13.262,13.784,59.646,676700.000,91.189,78.845,63.101,
13.540,
13.540,13.560,13.930,1.644,13.321,13.818,69.178,712700.000,74.009,77.233,67.812,
8.890,
8.890,13.930,13.540,-31.741,13.024,12.810,31.663,940500.000,0.000,51.489,62.371,
9.040,
9.040,13.540,8.890,-28.914,12.717,11.792,25.187,626800.000,2.863,35.280,53.340,8
.660,
8.660,8.890,9.040,-29.485,12.281,10.812,16.710,276400.000,0.000,23.520,43.400,8.
550,
8.550,9.040,8.660,-27.296,11.760,9.736,17.344,422900.000,0.000,15.680,34.160,8.7
90,
8.790,8.660,8.550,-22.226,11.302,8.786,13.598,401000.000,4.301,11.887,26.736,8.5
80,
8.580,8.550,8.790,-20.312,10.767,8.724,10.750,218900.000,0.538,8.104,20.525,8.78
0,
8.780,8.790,8.580,-14.191,10.232,8.672,14.328,282100.000,4.275,6.828,15.959,9.58
0,
9.580,8.580,8.780,-2.583,9.834,8.856,19.495,767400.000,19.145,10.933,14.284,9.59
0,
9.590,8.780,9.580,2.021,9.400,9.064,20.741,688500.000,20.842,14.236,14.268,9.970
,
9.970,9.580,9.590,10.251,9.043,9.300,71.774,496500.000,100.000,42.824,23.787,10.
270,
10.270,9.590,9.970,11.861,9.181,9.638,73.384,1004600.000,100.000,61.883,36.485,1
0.800,
10.800,9.970,10.270,15.422,9.357,10.042,88.489,1423400.000,100.000,74.588,49.186
,11.120,
11.120,10.270,10.800,15.797,9.603,10.350,92.977,1428600.000,100.000,83.059,60.47
7,10.530,
......

Epoch #1 Error:21.27658552555636
Epoch #2 Error:20.21982186570871
Epoch #3 Error:20.21982186570871
Epoch #4 Error:20.21982186570871
Epoch #5 Error:20.21982186570871
Epoch #6 Error:20.21982186570871
Epoch #7 Error:20.21982186570871
Epoch #8 Error:20.21982186570871
Epoch #9 Error:20.21982186570871
Epoch #10 Error:20.21982186570871
Epoch #11 Error:20.21982186570871
Epoch #12 Error:20.21982186570871
Epoch #13 Error:20.21982186570871
Epoch #14 Error:20.21982186570871
Epoch #15 Error:20.21982186570871
Epoch #16 Error:20.21982186570871
Epoch #17 Error:20.21982186570871
Epoch #18 Error:20.21982186570871
Epoch #19 Error:20.21982186570871
Epoch #20 Error:20.21982186570871
Epoch #21 Error:20.21982186570871
Epoch #22 Error:20.21982186570871
Epoch #23 Error:20.21982186570871
Epoch #24 Error:20.21982186570871
Epoch #25 Error:20.21982186570871
Epoch #26 Error:20.21982186570871
Epoch #27 Error:20.21982186570871
Epoch #28 Error:20.21982186570871
Epoch #29 Error:20.21982186570871
Epoch #30 Error:20.21982186570871
Epoch #31 Error:20.21982186570871
Epoch #32 Error:20.21982186570871
Epoch #33 Error:20.21982186570871
Epoch #34 Error:20.21982186570871
Epoch #35 Error:20.21982186570871
Epoch #36 Error:20.21982186570871
Epoch #37 Error:20.21982186570871
Epoch #38 Error:20.21982186570871
Epoch #39 Error:20.21982186570871
Epoch #40 Error:20.21982186570871
Epoch #41 Error:20.21982186570871
Epoch #42 Error:20.21982186570871
Epoch #43 Error:20.21982186570871
Epoch #44 Error:20.21982186570871
Epoch #45 Error:20.21982186570871
Epoch #46 Error:20.21982186570871
Epoch #47 Error:20.21982186570871
Epoch #48 Error:20.21982186570871
Epoch #49 Error:20.21982186570871
Epoch #50 Error:20.21982186570871
Epoch #51 Error:20.21982186570871
Epoch #52 Error:20.21982186570871
Epoch #53 Error:20.21982186570871
Epoch #54 Error:20.21982186570871
Epoch #55 Error:20.21982186570871
Epoch #56 Error:20.21982186570871
Epoch #57 Error:20.21982186570871
Epoch #58 Error:20.21982186570871
Epoch #59 Error:20.21982186570871
Epoch #60 Error:20.21982186570871
Epoch #61 Error:20.21982186570871
Epoch #62 Error:20.21982186570871
Epoch #63 Error:20.21982186570871
Epoch #64 Error:20.21982186570871
Epoch #65 Error:20.21982186570871
Epoch #66 Error:20.21982186570871
Epoch #67 Error:20.21982186570871
Epoch #68 Error:20.21982186570871
Epoch #69 Error:20.21982186570871
Epoch #70 Error:20.21982186570871
Epoch #71 Error:20.21982186570871
Epoch #72 Error:20.21982186570871
Epoch #73 Error:20.21982186570871
Epoch #74 Error:20.21982186570871
Epoch #75 Error:20.21982186570871
Epoch #76 Error:20.21982186570871
Epoch #77 Error:20.21982186570871
Epoch #78 Error:20.21982186570871
Epoch #79 Error:20.21982186570871
Epoch #80 Error:20.21982186570871
Epoch #81 Error:20.21982186570871
Epoch #82 Error:20.21982186570871
Epoch #83 Error:20.21982186570871
Epoch #84 Error:20.21982186570871
Epoch #85 Error:20.21982186570871
Epoch #86 Error:20.21982186570871
Epoch #87 Error:20.21982186570871
Epoch #88 Error:20.21982186570871
Epoch #89 Error:20.21982186570871
Epoch #90 Error:20.21982186570871
Epoch #91 Error:20.21982186570871
Epoch #92 Error:20.21982186570871
Epoch #93 Error:20.21982186570871
Epoch #94 Error:20.21982186570871
Epoch #95 Error:20.21982186570871
Epoch #96 Error:20.21982186570871
Epoch #97 Error:20.21982186570871
Epoch #98 Error:20.21982186570871
Epoch #99 Error:20.21982186570871
Epoch #100 Error:20.21982186570871
Epoch #101 Error:20.21982186570871
Epoch #102 Error:20.21982186570871
Epoch #103 Error:20.21982186570871
Epoch #104 Error:20.21982186570871
Epoch #105 Error:20.21982186570871
Epoch #106 Error:20.21982186570871
Epoch #107 Error:20.21982186570871
Epoch #108 Error:20.21982186570871
Epoch #109 Error:20.21982186570871
Epoch #110 Error:20.21982186570871
Epoch #111 Error:20.21982186570871
Epoch #112 Error:20.21982186570871
Epoch #113 Error:20.21982186570871
Epoch #114 Error:20.21982186570871
Epoch #115 Error:20.21982186570871
Epoch #116 Error:20.21982186570871
Epoch #117 Error:20.21982186570871
Epoch #118 Error:20.21982186570871
Epoch #119 Error:20.21982186570871
Epoch #120 Error:20.21982186570871
Epoch #121 Error:20.21982186570871
Epoch #122 Error:20.21982186570871
Epoch #123 Error:20.21982186570871
Epoch #124 Error:20.21982186570871
Epoch #125 Error:20.21982186570871
Epoch #126 Error:20.21982186570871
Epoch #127 Error:20.21982186570871
Epoch #128 Error:20.21982186570871
Epoch #129 Error:20.21982186570871
Epoch #130 Error:20.21982186570871
Epoch #131 Error:20.21982186570871
Epoch #132 Error:20.21982186570871
Epoch #133 Error:20.21982186570871
Epoch #134 Error:20.21982186570871
Epoch #135 Error:20.21982186570871
Epoch #136 Error:20.21982186570871
Epoch #137 Error:20.21982186570871
Epoch #138 Error:20.21982186570871
Epoch #139 Error:20.21982186570871
Epoch #140 Error:20.21982186570871
Epoch #141 Error:20.21982186570871
Epoch #142 Error:20.21982186570871
Epoch #143 Error:20.21982186570871
Epoch #144 Error:20.21982186570871
Epoch #145 Error:20.21982186570871
Epoch #146 Error:20.21982186570871
Epoch #147 Error:20.21982186570871
Epoch #148 Error:20.21982186570871
Epoch #149 Error:20.21982186570871

生成已停止(总时间:7 秒)

Original comment by tangmingjiali2@gmail.com on 20 Apr 2010 at 11:35

GoogleCodeExporter commented 9 years ago
Not totally sure what is being reported here.  Other than it looks like the 
data is failing to converge, which is not likely a defect.

Original comment by heatonre...@gmail.com on 14 Aug 2010 at 2:09