forked from mllam/neural-lam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_graph.py
208 lines (180 loc) · 5.85 KB
/
plot_graph.py
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
# Standard library
from argparse import ArgumentParser
# Third-party
import numpy as np
import plotly.graph_objects as go
import torch_geometric as pyg
# First-party
from neural_lam import config, utils
MESH_HEIGHT = 0.1
MESH_LEVEL_DIST = 0.2
GRID_HEIGHT = 0
def main():
"""
Plot graph structure in 3D using plotly
"""
parser = ArgumentParser(description="Plot graph")
parser.add_argument(
"--data_config",
type=str,
default="neural_lam/data_config.yaml",
help="Path to data config file (default: neural_lam/data_config.yaml)",
)
parser.add_argument(
"--graph",
type=str,
default="multiscale",
help="Graph to plot (default: multiscale)",
)
parser.add_argument(
"--save",
type=str,
help="Name of .html file to save interactive plot to (default: None)",
)
parser.add_argument(
"--show_axis",
type=int,
default=0,
help="If the axis should be displayed (default: 0 (No))",
)
args = parser.parse_args()
data_config = config.Config.from_file(args.data_config)
xy = data_config.get_xy("state") # (2, N_y, N_x)
xy = xy.reshape(2, -1).T # (N_grid, 2)
pos_max = np.max(np.abs(xy))
grid_pos = xy / pos_max # Divide by maximum coordinate
# Load graph data
hierarchical, graph_ldict = utils.load_graph(args.graph)
(g2m_edge_index, m2g_edge_index, m2m_edge_index,) = (
graph_ldict["g2m_edge_index"],
graph_ldict["m2g_edge_index"],
graph_ldict["m2m_edge_index"],
)
mesh_up_edge_index, mesh_down_edge_index = (
graph_ldict["mesh_up_edge_index"],
graph_ldict["mesh_down_edge_index"],
)
mesh_static_features = graph_ldict["mesh_static_features"]
# Add in z-dimension
z_grid = GRID_HEIGHT * np.ones((grid_pos.shape[0],))
grid_pos = np.concatenate(
(grid_pos, np.expand_dims(z_grid, axis=1)), axis=1
)
# List of edges to plot, (edge_index, color, line_width, label)
edge_plot_list = [
(m2g_edge_index.numpy(), "black", 0.4, "M2G"),
(g2m_edge_index.numpy(), "black", 0.4, "G2M"),
]
# Mesh positioning and edges to plot differ if we have a hierarchical graph
if hierarchical:
mesh_level_pos = [
np.concatenate(
(
level_static_features.numpy(),
MESH_HEIGHT
+ MESH_LEVEL_DIST
* height_level
* np.ones((level_static_features.shape[0], 1)),
),
axis=1,
)
for height_level, level_static_features in enumerate(
mesh_static_features, start=1
)
]
mesh_pos = np.concatenate(mesh_level_pos, axis=0)
# Add inter-level mesh edges
edge_plot_list += [
(level_ei.numpy(), "blue", 1, f"M2M Level {level}")
for level, level_ei in enumerate(m2m_edge_index)
]
# Add intra-level mesh edges
up_edges_ei = np.concatenate(
[level_up_ei.numpy() for level_up_ei in mesh_up_edge_index], axis=1
)
down_edges_ei = np.concatenate(
[level_down_ei.numpy() for level_down_ei in mesh_down_edge_index],
axis=1,
)
edge_plot_list.append((up_edges_ei, "green", 1, "Mesh up"))
edge_plot_list.append((down_edges_ei, "green", 1, "Mesh down"))
mesh_node_size = 2.5
else:
mesh_pos = mesh_static_features.numpy()
mesh_degrees = pyg.utils.degree(m2m_edge_index[1]).numpy()
z_mesh = MESH_HEIGHT + 0.01 * mesh_degrees
mesh_node_size = mesh_degrees / 2
mesh_pos = np.concatenate(
(mesh_pos, np.expand_dims(z_mesh, axis=1)), axis=1
)
edge_plot_list.append((m2m_edge_index.numpy(), "blue", 1, "M2M"))
# All node positions in one array
node_pos = np.concatenate((mesh_pos, grid_pos), axis=0)
# Add edges
data_objs = []
for (
ei,
col,
width,
label,
) in edge_plot_list:
edge_start = node_pos[ei[0]] # (M, 2)
edge_end = node_pos[ei[1]] # (M, 2)
n_edges = edge_start.shape[0]
x_edges = np.stack(
(edge_start[:, 0], edge_end[:, 0], np.full(n_edges, None)), axis=1
).flatten()
y_edges = np.stack(
(edge_start[:, 1], edge_end[:, 1], np.full(n_edges, None)), axis=1
).flatten()
z_edges = np.stack(
(edge_start[:, 2], edge_end[:, 2], np.full(n_edges, None)), axis=1
).flatten()
scatter_obj = go.Scatter3d(
x=x_edges,
y=y_edges,
z=z_edges,
mode="lines",
line={"color": col, "width": width},
name=label,
)
data_objs.append(scatter_obj)
# Add node objects
data_objs.append(
go.Scatter3d(
x=grid_pos[:, 0],
y=grid_pos[:, 1],
z=grid_pos[:, 2],
mode="markers",
marker={"color": "black", "size": 1},
name="Grid nodes",
)
)
data_objs.append(
go.Scatter3d(
x=mesh_pos[:, 0],
y=mesh_pos[:, 1],
z=mesh_pos[:, 2],
mode="markers",
marker={"color": "blue", "size": mesh_node_size},
name="Mesh nodes",
)
)
fig = go.Figure(data=data_objs)
fig.update_layout(scene_aspectmode="data")
fig.update_traces(connectgaps=False)
if not args.show_axis:
# Hide axis
fig.update_layout(
scene={
"xaxis": {"visible": False},
"yaxis": {"visible": False},
"zaxis": {"visible": False},
}
)
if args.save:
fig.write_html(args.save, include_plotlyjs="cdn")
else:
fig.show()
if __name__ == "__main__":
main()