eidoom commited on
Commit
457fe84
1 Parent(s): 6e814dc
Files changed (1) hide show
  1. config.json +150 -0
config.json ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "device": "cpu",
3
+ "dtype": "float32",
4
+ "dimensions": {
5
+ "input": {
6
+ "variables": 2
7
+ },
8
+ "output": {
9
+ "functions": 33,
10
+ "epsilon_orders": 3
11
+ },
12
+ "connection": {
13
+ "epsilon_orders": 3
14
+ }
15
+ },
16
+ "phase_space": {
17
+ "scale": 5.0,
18
+ "const": 1.0,
19
+ "cut": {
20
+ "physical": 0.1,
21
+ "spurious": 0.01
22
+ }
23
+ },
24
+ "hyperparameters": {
25
+ "optimiser": {
26
+ "algorithm": "Adam",
27
+ "initial_learning_rate": 1e-3
28
+ },
29
+ "learning_rate_scheduler": {
30
+ "factor": 0.1,
31
+ "patience": 3,
32
+ "threshold": 1e-2,
33
+ "cooldown": 3
34
+ },
35
+ "iterations": {
36
+ "batch_size": 256,
37
+ "partition_size": 512,
38
+ "number_partitions": 1
39
+ },
40
+ "architecture": {
41
+ "hidden_layers": [128, 128, 128, 128],
42
+ "activation": "GELU"
43
+ },
44
+ "loss_function": {
45
+ "boundary_bias": 1.0,
46
+ "boundary_derivatives": false
47
+ }
48
+ },
49
+ "termination": {
50
+ "epochs": 0,
51
+ "seconds": 0,
52
+ "learning_rate": {
53
+ "target": 1.1e-8,
54
+ "patience": 3
55
+ }
56
+ },
57
+ "zeros": {
58
+ "re": [
59
+ [0, 0],
60
+ [0, 1],
61
+ [1, 0],
62
+ [4, 0],
63
+ [7, 0],
64
+ [8, 0],
65
+ [8, 1],
66
+ [9, 0],
67
+ [9, 1],
68
+ [10, 0],
69
+ [10, 1],
70
+ [11, 0],
71
+ [12, 0],
72
+ [12, 1],
73
+ [14, 0],
74
+ [16, 0],
75
+ [16, 1],
76
+ [19, 0],
77
+ [23, 0],
78
+ [24, 0],
79
+ [25, 0],
80
+ [27, 0]
81
+ ],
82
+ "im": [
83
+ [0, 0],
84
+ [0, 1],
85
+ [1, 0],
86
+ [1, 1],
87
+ [2, 0],
88
+ [3, 0],
89
+ [3, 1],
90
+ [4, 0],
91
+ [4, 1],
92
+ [5, 0],
93
+ [5, 1],
94
+ [6, 0],
95
+ [6, 1],
96
+ [7, 0],
97
+ [8, 0],
98
+ [8, 1],
99
+ [9, 0],
100
+ [9, 1],
101
+ [10, 0],
102
+ [10, 1],
103
+ [11, 0],
104
+ [12, 0],
105
+ [12, 1],
106
+ [13, 0],
107
+ [13, 1],
108
+ [14, 0],
109
+ [14, 1],
110
+ [15, 0],
111
+ [16, 0],
112
+ [16, 1],
113
+ [17, 0],
114
+ [17, 1],
115
+ [18, 0],
116
+ [18, 1],
117
+ [18, 2],
118
+ [19, 0],
119
+ [19, 1],
120
+ [20, 0],
121
+ [20, 1],
122
+ [20, 2],
123
+ [21, 0],
124
+ [21, 1],
125
+ [22, 0],
126
+ [23, 0],
127
+ [23, 1],
128
+ [24, 0],
129
+ [25, 0],
130
+ [25, 1],
131
+ [25, 2],
132
+ [26, 0],
133
+ [26, 1],
134
+ [27, 0],
135
+ [27, 1],
136
+ [28, 0],
137
+ [28, 1],
138
+ [28, 2],
139
+ [29, 0],
140
+ [29, 1],
141
+ [30, 0],
142
+ [30, 1],
143
+ [30, 2],
144
+ [31, 0],
145
+ [32, 0],
146
+ [32, 1],
147
+ [32, 2]
148
+ ]
149
+ }
150
+ }