francescocalisto
commited on
Commit
·
c5882a9
1
Parent(s):
1bb6102
Upload config.json
Browse files- config.json +57 -0
config.json
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"device": "cpu",
|
3 |
+
"dtype": "float32",
|
4 |
+
"dimensions": {
|
5 |
+
"input": {
|
6 |
+
"variables": 2
|
7 |
+
},
|
8 |
+
"output": {
|
9 |
+
"epsilon_orders": 5,
|
10 |
+
"functions": 4
|
11 |
+
},
|
12 |
+
"connection": {
|
13 |
+
"epsilon_orders": 2
|
14 |
+
}
|
15 |
+
},
|
16 |
+
"phase_space": {
|
17 |
+
"scale": 6.5,
|
18 |
+
"const": 6.5,
|
19 |
+
"cut": {
|
20 |
+
"physical": 0.1,
|
21 |
+
"spurious": 0.1
|
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": 5,
|
32 |
+
"threshold": 1e-2,
|
33 |
+
"cooldown": 5
|
34 |
+
},
|
35 |
+
"iterations": {
|
36 |
+
"batch_size": 128,
|
37 |
+
"partition_size": 2048,
|
38 |
+
"number_partitions": 1
|
39 |
+
},
|
40 |
+
"architecture": {
|
41 |
+
"hidden_layers": [64, 64, 64],
|
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.5e-8,
|
54 |
+
"patience": 3
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|