-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_case_heat.py
More file actions
431 lines (358 loc) · 18.2 KB
/
test_case_heat.py
File metadata and controls
431 lines (358 loc) · 18.2 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
import os
import time
import numpy as np
import torch
from scipy.interpolate import griddata
from torch.utils.tensorboard import SummaryWriter
import torch.optim as optim
# import torch.nn.functional as F
# from torch_geometric.nn import global_mean_pool
from torch_geometric.loader import DataLoader
from tqdm import tqdm
import matplotlib.pyplot as plt
import h5py
from utils import train_test_split, get_cur_time, initialize_model, initialize_dataset
NUM_FIXED_ALPHA_EPOCHS = 100
NUM_FIXED_COEFFICIENT_EPOCHS = 100
# function for debug purpose
def print_groups_and_datasets(name, obj):
print(name, ":", type(obj))
def visualize_alpha(writer, model, epoch):
alphas = model.alpha
# alphas = np.array(alphas, dtype=np.float32)
num_order = len(alphas[1][0])
for i in range(num_order):
writer.add_histogram(f"Alpha Order {i}", alphas[1][:, i], epoch)
def visualize_coefficients(writer, model, epoch):
coefficients = model.coefficient[1]
# coefficients = coefficients.detach().cpu().numpy()
writer.add_histogram("Coefficients", coefficients, epoch)
def visualize_errors_by_layer(writer, model, epoch):
errors = model.errors
for i, error in enumerate(errors):
# error = error.detach().cpu().numpy()
writer.add_histogram(f"Error Layer {i}", error, epoch)
def visualize_clusters(writer, data, model, epoch):
clusters = model.cluster
# clusters = clusters.detach().cpu().numpy()
fig = plt.figure()
plt.scatter(data.pos[:, 0].detach().cpu().numpy(), data.pos[:, 1].detach().cpu().numpy(), c=clusters.detach().cpu().numpy(), cmap="viridis")
plt.colorbar()
plt.title(f"Clusters (Epoch: {epoch})")
writer.add_figure("Clusters", fig, epoch)
plt.close(fig)
def visualize_prediction(writer, data, model, epoch):
x, edge_index, edge_attr = data.x, data.edge_index, data.edge_attr
pred = model(x, edge_index, edge_attr).detach().cpu().numpy()
x = data.pos_high[:, 0].detach().cpu().numpy()
y = data.pos_high[:, 1].detach().cpu().numpy()
# x = data.pos[:, 0].detach().cpu().numpy()
# y = data.pos[:, 1].detach().cpu().numpy()
x_values = np.unique(x)
y_values = np.unique(y)
temp_grid = pred.squeeze().reshape(len(x_values), len(y_values))
fig = plt.figure(figsize=(8, 6))
# plt.contourf(x_values, y_values, temp_grid, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.contourf(x_values, y_values, temp_grid, cmap="RdBu_r")
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("Prediction", fig, epoch)
plt.close(fig)
temp_grid_true = data.y.cpu().detach().numpy().squeeze().reshape(len(x_values), len(y_values))
fig = plt.figure(figsize=(8, 6))
# plt.contourf(x_values, y_values, temp_grid_true, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.contourf(x_values, y_values, temp_grid_true, cmap="RdBu_r")
# limit the three figures to have the same colorbar
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("True", fig, epoch)
plt.close(fig)
temp_grid_error = np.abs(temp_grid - temp_grid_true)
fig = plt.figure(figsize=(8, 6))
# plt.contourf(x_values, y_values, temp_grid_error, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.contourf(x_values, y_values, temp_grid_error, cmap="RdBu_r")
plt.colorbar(label='Temperature')
plt.title('Temperature Error Map')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("Error", fig, epoch)
plt.close(fig)
x_low = data.pos[:, 0].detach().cpu().numpy()
y_low = data.pos[:, 1].detach().cpu().numpy()
x_values_low = np.unique(x_low)
y_values_low = np.unique(y_low)
# temp_grid_low = data.x.detach().cpu().numpy().squeeze().reshape(len(x_values_low), len(y_values_low))
temp_grid_low = data.x[:, 0].detach().cpu().numpy().squeeze().reshape(len(x_values), len(y_values))
fig = plt.figure(figsize=(8, 6))
# plt.contourf(x_values_low, y_values_low, temp_grid_low, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
# plt.contourf(x_values, y_values, temp_grid_low, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.contourf(x_values, y_values, temp_grid_low, cmap="RdBu_r")
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("Low Resolution", fig, epoch)
plt.close(fig)
def visualize_prediction_sage(writer, data, model, epoch):
pred = model(data.x, data.edge_index).detach().cpu().numpy()
x = data.pos[:, 0].detach().cpu().numpy()
y = data.pos[:, 1].detach().cpu().numpy()
x_values = np.unique(x)
y_values = np.unique(y)
temp_grid = pred.squeeze().reshape(len(x_values), len(y_values))
fig = plt.figure(figsize=(8, 6))
plt.contourf(x_values, y_values, temp_grid, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("Prediction", fig, epoch)
plt.close(fig)
temp_grid_true = data.y.cpu().detach().numpy().squeeze().reshape(len(x_values), len(y_values))
fig = plt.figure(figsize=(8, 6))
plt.contourf(x_values, y_values, temp_grid_true, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
# limit the three figures to have the same colorbar
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("True", fig, epoch)
plt.close(fig)
x_low = data.pos[:, 0].detach().cpu().numpy()
y_low = data.pos[:, 1].detach().cpu().numpy()
x_values_low = np.unique(x_low)
y_values_low = np.unique(y_low)
temp_grid_low = data.x.detach().cpu().numpy().squeeze().reshape(len(x_values_low), len(y_values_low))
fig = plt.figure(figsize=(8, 6))
plt.contourf(x_values_low, y_values_low, temp_grid_low, levels=np.linspace(0, 1, 100), cmap="RdBu_r")
plt.colorbar(label='Temperature')
plt.title('Temperature Contour Plot')
plt.xlabel('x')
plt.ylabel('y')
writer.add_figure("Low Resolution", fig, epoch)
plt.close(fig)
def train():
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# model = HeatTransferNetwork(1, 64, 1, 2).to(device)
model = initialize_model(type='KernelConv', in_channel=1, out_channel=1, num_layers=2).to(device)
print('The model has {} parameters'.format(sum(p.numel() for p in model.parameters() if p.requires_grad)))
optimizer = optim.Adam(model.parameters(), lr=0.0001, weight_decay=5e-4)
scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=50, gamma=0.5)
# dataset = HeatTransferDataset('dataset/heat', res_low=1, res_high=3)
dataset = initialize_dataset(dataset='HeatTransferDataset', root='dataset/heat', res_low=1, res_high=3, pre_transform='interpolate_high')
train_dataset, test_dataset = train_test_split(dataset, 0.8)
train_loader = DataLoader(train_dataset, batch_size=16, shuffle=True)
test_loader = DataLoader(test_dataset, batch_size=16, shuffle=False)
sim_start_time = get_cur_time()
writer = SummaryWriter('runs/heat_transfer/CFDError/{}'.format(sim_start_time))
os.makedirs('test_cases/heat_transfer/CFDError/{}'.format(sim_start_time), exist_ok=True)
t1 = time.time()
for epoch in range(5000):
model.train()
loss_all = 0
# i_sample = 0
for data in train_loader:
# model.train()
# i_sample += 1
# if i_sample > 200:
# break
data = data.to(device)
optimizer.zero_grad()
x, edge_index, edge_attr = data.x, data.edge_index, data.edge_attr
out = model(x, edge_index, edge_attr)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
loss.backward()
loss_all += loss.item()
optimizer.step()
# following code evaluates the model performance with each training sample
# if i_sample in [1, 2, 5, 50, 200]:
# model.eval()
# with torch.no_grad():
# data = test_dataset[np.random.randint(len(test_dataset))]
# data = data.to(device)
# out = model(data)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
# loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
# writer.add_scalar('Loss/test', loss, i_sample)
# writer.add_scalar('R2 Accuracy/test', r2_accuracy, i_sample)
# visualize_prediction(writer, data, model, i_sample)
# visualize_alpha(writer, model, i_sample)
scheduler.step()
writer.add_scalar('Loss/train', loss_all / len(train_loader), epoch)
visualize_prediction(writer, data[0], model, epoch)
# visualize_alpha(writer, model, epoch)
# visualize_coefficients(writer, model, epoch)
# visualize_clusters(writer, data, model, epoch)
# visualize_errors_by_layer(writer, model, epoch)
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(train_loader)))
if epoch % 10 == 0:
model.eval()
loss_all = 0
for data in test_loader:
data = data.to(device)
x, edge_index, edge_attr = data.x, data.edge_index, data.edge_attr
out = model(x, edge_index, edge_attr)
if data.y.dim() == 1:
data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
loss_all += loss.item()
writer.add_scalar('Loss/test', loss_all / len(test_loader), epoch)
torch.save(model.state_dict(), 'test_cases/heat_transfer/CFDError/{}/model_{}.pt'.format(sim_start_time, epoch))
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(test_loader)))
t2 = time.time()
print('Training time: {:.4f} s'.format(t2 - t1))
torch.save(model.state_dict(), 'test_cases/heat_transfer/CFDError/{}/model.pt'.format(sim_start_time))
writer.close()
def train_neural_op():
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model = initialize_model(type='NeuralOperator', in_channel=1, out_channel=1, width=11, ker_width=2, depth=6).to(device)
print('The model has {} parameters'.format(sum(p.numel() for p in model.parameters() if p.requires_grad)))
optimizer = optim.Adam(model.parameters(), lr=0.001, weight_decay=5e-4)
scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=100, gamma=0.5)
dataset = initialize_dataset(dataset='HeatTransferDataset', root='dataset/heat', res_low=0, res_high=3)
train_dataset, test_dataset = train_test_split(dataset, 0.8)
train_loader = DataLoader(train_dataset, batch_size=16, shuffle=True)
test_loader = DataLoader(test_dataset, batch_size=16, shuffle=False)
sim_start_time = get_cur_time()
writer = SummaryWriter('runs/heat_transfer/NeuralOperator/{}'.format(sim_start_time))
os.makedirs('test_cases/heat_transfer/NeuralOperator/{}'.format(sim_start_time), exist_ok=True)
t1 = time.time()
for epoch in range(1000):
model.train()
loss_all = 0
# i_sample = 0
for data in train_loader:
# model.train()
# i_sample += 1
# if i_sample > 200:
# break
data = data.to(device)
optimizer.zero_grad()
out = model(data)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
loss.backward()
loss_all += loss.item()
optimizer.step()
# following code evaluates the model performance with each training sample
# if i_sample in [1, 2, 5, 50, 200]:
# model.eval()
# with torch.no_grad():
# data = test_dataset[np.random.randint(len(test_dataset))]
# data = data.to(device)
# out = model(data)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
# loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
# writer.add_scalar('Loss/test', loss, i_sample)
# writer.add_scalar('R2 Accuracy/test', r2_accuracy, i_sample)
# visualize_prediction(writer, data, model, i_sample)
# visualize_alpha(writer, model, i_sample)
scheduler.step()
writer.add_scalar('Loss/train', loss_all / len(train_loader), epoch)
# visualize_errors_by_layer(writer, model, epoch)
visualize_prediction(writer, data[0], model, epoch)
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(train_loader)))
if epoch % 10 == 0:
model.eval()
loss_all = 0
for data in test_loader:
data = data.to(device)
out = model(data)
if data.y.dim() == 1:
data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
loss_all += loss.item()
writer.add_scalar('Loss/test', loss_all / len(test_loader), epoch)
torch.save(model.state_dict(), 'test_cases/heat_transfer/NeuralOperator/{}/model_{}.pt'.format(sim_start_time, epoch))
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(test_loader)))
t2 = time.time()
print('Training time: {:.4f} s'.format(t2 - t1))
torch.save(model.state_dict(), 'test_cases/heat_transfer/NeuralOperator/{}/model.pt'.format(sim_start_time))
writer.close()
def train_graphsage():
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model = initialize_model(type='GraphSAGE', in_channel=1, out_channel=1, hidden_channel=64, num_layers=6, dropout=0.1).to(device)
print('The model has {} parameters'.format(sum(p.numel() for p in model.parameters() if p.requires_grad)))
optimizer = optim.Adam(model.parameters(), lr=0.001, weight_decay=5e-4)
scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=100, gamma=0.5)
dataset = initialize_dataset(dataset='HeatTransferDataset', root='dataset/heat_original', res_low=0, res_high=3)
train_dataset, test_dataset = train_test_split(dataset, 0.8)
train_loader = DataLoader(train_dataset, batch_size=1, shuffle=True)
test_loader = DataLoader(test_dataset, batch_size=8, shuffle=False)
sim_start_time = get_cur_time()
writer = SummaryWriter('runs/heat_transfer/GraphSAGE/{}'.format(sim_start_time))
os.makedirs('test_cases/heat_transfer/GraphSAGE/{}'.format(sim_start_time), exist_ok=True)
t1 = time.time()
for epoch in range(1000):
model.train()
loss_all = 0
# i_sample = 0
for data in train_loader:
# model.train()
# i_sample += 1
# if i_sample > 200:
# break
data = data.to(device)
optimizer.zero_grad()
out = model(data.x, data.edge_index)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
loss.backward()
loss_all += loss.item()
optimizer.step()
# following code evaluates the model performance with each training sample
# if i_sample in [1, 2, 5, 50, 200]:
# model.eval()
# with torch.no_grad():
# data = test_dataset[np.random.randint(len(test_dataset))]
# data = data.to(device)
# out = model(data)
# if data.y.dim() == 1:
# data.y = data.y.unsqueeze(-1)
# loss = torch.nn.functional.mse_loss(out, data.y)
# r2_accuracy = r2_score(data.y.cpu().detach().numpy(), out.cpu().detach().numpy())
# writer.add_scalar('Loss/test', loss, i_sample)
# writer.add_scalar('R2 Accuracy/test', r2_accuracy, i_sample)
# visualize_prediction(writer, data, model, i_sample)
# visualize_alpha(writer, model, i_sample)
scheduler.step()
writer.add_scalar('Loss/train', loss_all / len(train_loader), epoch)
# visualize_errors_by_layer(writer, model, epoch)
visualize_prediction_sage(writer, data[0], model, epoch)
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(train_loader)))
if epoch % 10 == 0:
model.eval()
loss_all = 0
for data in test_loader:
data = data.to(device)
out = model(data.x, data.edge_index)
if data.y.dim() == 1:
data.y = data.y.unsqueeze(-1)
loss = torch.nn.functional.mse_loss(out, data.y)
loss_all += loss.item()
writer.add_scalar('Loss/test', loss_all / len(test_loader), epoch)
torch.save(model.state_dict(), 'test_cases/heat_transfer/GraphSAGE/{}/model_{}.pt'.format(sim_start_time, epoch))
print('Epoch: {:02d}, Loss: {:.4f}'.format(epoch, loss_all / len(test_loader)))
t2 = time.time()
print('Training time: {:.4f} s'.format(t2 - t1))
torch.save(model.state_dict(), 'test_cases/heat_transfer/GraphSAGE/{}/model.pt'.format(sim_start_time))
writer.close()
if __name__ == '__main__':
train()
# train_neural_op()
# train_graphsage()