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
{
"version": "1",
"network": {
"metadata": {
"description": "A simple network with extra user-defined data."
},
"activation": "tanh",
"genome": [
{
"kind": "neuron",
"id": 2,
"num_inputs": 3,
"weight": 0.5
},
{
"kind": "recurrentjumper",
"source_id": 2,
"weight": 0.8
},
{
"kind": "input",
"id": 0,
"weight": 0.1
},
{
"kind": "input",
"id": 1,
"weight": 0.3
}
],
"recurrent_state": [
0.6043677771171636
],
"extra": {
"x": 1,
"y": [
2.0,
3.0
]
}
}
}