summaryrefslogtreecommitdiff
path: root/src/mlp_data.c
blob: c40c65e55b09f2dbf1120efdc88203d5da33cc23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "mlp.h"

/* RMS error was 0.289869, seed was 1321927439 */

static const float weights[191] = {

/* hidden layer */
2.96755, 0.00115262, -0.241332, -0.176303, -0.23881, 
-0.104982, 0.0976941, 0.0866153, 0.0445939, 0.109937, 
0.0233463, 0.0474137, -0.214098, -0.104922, -0.182143, 
-8.4938, -6.0075, -0.521072, 0.0844896, -0.017247, 
-0.00201771, 0.102053, -0.000613734, -0.0365414, -0.313326, 
-0.388116, 0.195686, 0.415635, 0.139734, -0.375908, 
-0.495817, 0.197472, 0.108982, 15.8272, 1.39337, 
0.295248, 0.478087, -0.521584, 0.547038, -0.970695, 
0.410447, -0.0398747, -0.157433, 0.225191, -0.159447, 
0.0773803, -0.14035, -0.432067, 0.436629, -0.81, 
0.258396, -1.35361, 0.379898, 0.0501006, 5.69164, 
0.0244047, -0.0253634, 0.0778099, -0.00686666, 0.0670103, 
0.131673, -0.0865675, -0.088408, -0.0215524, -0.105515, 
0.130154, -0.0107951, 0.0149045, -0.00721336, 2.70627, 
-5.84219, 0.845236, 2.9728, 0.0480452, 0.0522916, 
-0.17107, -0.844511, 0.086013, 0.0808069, 0.0362425, 
0.104797, 0.0312275, 0.100703, 0.0868895, 0.107739, 
-0.155109, -0.743343, 2.12173, -3.50347, 3.38095, 
-4.60509, -0.0940445, 0.133728, -0.0279815, 0.072341, 
0.0587296, -0.490762, -0.68488, -0.171973, -0.0674625, 
0.0557464, -0.000785266, 0.326857, -0.109421, 0.0148745, 
-22.8631, 4.74747, -0.927737, -0.125692, -0.484348, 
0.448016, -0.858588, 0.36091, -0.0261568, -0.193647, 
0.224419, -0.156897, 0.0704276, -0.133405, -0.420752, 
0.374365, -0.718979, 0.213614, -0.00984738, 1.75345, 
-0.739806, 1.5547, 0.23016, -0.314378, -0.221868, 
0.444039, -0.287516, 0.0769676, 0.025709, 0.0960222, 
-0.0841409, 0.188217, 0.311774, -0.269616, -0.237803, 
0.318714, 5.50044, -3.76367, 5.06448, 0.592319, 
-3.03044, 3.38612, -4.38443, 1.30165, -0.804144, 
-0.531203, 0.605657, -0.43792, 0.352739, -0.0578825, 
-2.29906, 2.33548, -2.93828, 0.74198, 21.5563, 
5.77912, -11.0732, 0.552401, -0.274121, -0.615635, 
-0.142968, -0.201479, -0.0541993, 0.0475207, 0.222928, 
-0.0327647, -0.0123197, -0.00380516, -0.149003, -0.313818, 
-0.137811, -0.181652, 1.23463, 2.17364, 0.229491, 

/* output layer */
-7.91184, -1.52122, 0.603183, -3.27692, 3.61369, 
1.16504, -1.1068, 2.80566, 0.85419, 0.545877, 
0.804097, };

static const int topo[3] = {17, 10, 1};

const MLP net = {
	3,
	topo,
	weights
};