-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtradnet_cuda.json
71 lines (71 loc) · 1.62 KB
/
tradnet_cuda.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"layers": [
{
"_realType": "LinearLayer",
"name": "l1",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 784,
"numOutputs": 300
},
{
"_realType": "TanhNeuronLayer",
"name": "r1"
},
{
"_realType": "LinearLayer",
"name": "l2",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 300,
"numOutputs": 500
},
{
"_realType": "TanhNeuronLayer",
"name": "r2"
},
{
"_realType": "LinearLayer",
"name": "l3",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 500,
"numOutputs": 200
},
{
"_realType": "TanhNeuronLayer",
"name": "r3"
},
{
"_realType": "LinearLayer",
"name": "lt",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 200,
"numOutputs": 50
},
{
"_realType": "TanhNeuronLayer",
"name": "rt"
},
{
"_realType": "LinearLayer",
"name": "l4",
"momentum": 0.9,
"weightDecay": 0.0005,
"numInputs": 50,
"numOutputs": 10
},
{
"_realType": "SoftmaxLayer",
"name": "soft"
}
],
"cost": {
"_realType": "LogLossCost"
},
"device": {
"_realType": "cuda",
"deviceId": 0
}
}