-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplotting_specs.py
More file actions
31 lines (29 loc) · 851 Bytes
/
Copy pathplotting_specs.py
File metadata and controls
31 lines (29 loc) · 851 Bytes
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
colors = {
"SVD_least_squares": "#52b4d9",
"matrix_least_squares": '#0037ff',
"Eigen_least_squares": "#9645ff",
"deeponet": "#fc1c1c",
"deeponet_cnn": "#8f0000",
"deeponet_pod": "#04b306",
"deeponet_2stage": "#ff8c00",
"deeponet_2stage_cnn": "#d6ac04",
}
labels = {
"SVD_least_squares": "SVD",
"matrix_least_squares": "B2B",
"Eigen_least_squares": "ED",
"deeponet": "DeepONet",
"deeponet_cnn": "DeepONet (CNN)",
"deeponet_pod": "DeepONet POD",
"deeponet_2stage": "DeepONet 2-stage",
"deeponet_2stage_cnn": "DeepONet 2-stage (CNN)",
}
titles = {
"Derivative": "Derivative",
"Elastic": "Elastic Plate",
"Integral": "Anti-Derivative",
"LShaped": "2D Darcy Flow",
"Heat": "Parameterized Heat Equation",
"Darcy": "1D Darcy Flow",
"Burger": "Burger's Equation",
}