1 Star 0 Fork 0

chenruilin2024/MultiscaleGNN

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
test.py 4.95 KB
Copy Edit Raw Blame History
chenruilin2024 authored 2024-04-05 15:03 . multiscale_gnn
# Copyright 2023 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
"""
test
"""
import time
import argparse
import numpy as np
import scipy.io as sio
import mindspore
from mindspore import nn
from mindspore import context
from mindspore import Tensor, COOTensor
from src.models import MultiScaleGNN, MultiScaleGNNStructure
from src.datasets import read_test_data
from src.datasets import SecondOrderDerivativeMatix2d
from src.visualization import losses_curve, contourf_comparison
def run_test(model):
loss_all = sio.loadmat(save_dir+'/loss_all.mat')['loss_all'].tolist()
param_dict = mindspore.load_checkpoint(save_dir+'/checkpoint/model.ckpt')
param_not_load, _ = mindspore.load_param_into_net(model, param_dict)
print(param_not_load)
model.set_train(False)
losses_curve(np.array(loss_all),save_dir+'/Figures/')
p_hat = []
start_time = time.time()
for it in range(divUstar_test.shape[0]//5):
if grid_type == 'unstructure':
b = Tensor(divUstar_test[it*5:(it+1)*5]).reshape([-1,1]) #(5*nx*ny, 1)
p = model(b)
p = p.reshape([5, nx, ny]).asnumpy() #(5, nx, ny)
p_hat.append(p)
if grid_type == 'structure':
b = Tensor(divUstar_test[it*5:(it+1)*5]).unsqueeze(1) # (5, 1, nx, ny)
p = model(b)
p = p.squeeze(1).asnumpy() #(5, nx, ny)
p_hat.append(p)
elapsed = time.time() - start_time
print('it: %d, Time: %.3f' % (it, elapsed))
start_time = time.time()
p_hat = np.concatenate(p_hat,axis=0)
print('####################################')
# mean absolute error
MAE = np.mean((p_hat-p_test)**2,axis=(1,2))
print('mean absolute error:')
print(MAE)
print('average mean absolute error:')
print(MAE.mean())
print('####################################')
# relative L2 error
RL2E = np.linalg.norm(p_hat-p_test,axis=(1,2))**2/np.linalg.norm(p_test,axis=(1,2))**2
print('relative L2 error:')
print(RL2E)
print('average relative L2 error:')
print(RL2E.mean())
if plot_figure:
for k in range(divUstar_test.shape[0]):
contourf_comparison(p_test[k], p_hat[k], save_dir+f'/Figures/{k}')
return p_hat
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('--grid_type', type=str, default='unstructure')
parser.add_argument('--activ_fun', type=str, default='swish')
parser.add_argument('--device', type=str, default='CPU')
parser.add_argument('--lambda_p', type=int, default=20)
parser.add_argument('--lambda_eq', type=int, default=1)
parser.add_argument('--plot_figure', type=int, default=0)
args = parser.parse_args()
grid_type = args.grid_type
activ_fun = args.activ_fun
device = args.device
lambda_p = args.lambda_p
lambda_eq = args.lambda_eq
plot_figure = args.plot_figure
context.set_context(device_target=device)
nx = 512
ny = 512
dx = 2.*np.pi/nx
dy = 2.*np.pi/ny
# t_test = [2.0, 4.0, 6.0, 8.0, 10.]
t_test = np.arange(0.2,10.2,0.2)
divUstar_test, p_test = read_test_data(t_test, dx, dy)
print('divUstar_test shape :', divUstar_test.shape)
print('p_test shape :', p_test.shape)
print('divUstar_test max :', np.abs(divUstar_test).max())
print('p_test max :', np.abs(p_test).max())
A0 = SecondOrderDerivativeMatix2d(nx, ny, dx, dy)
save_dir = f'./Savers/{grid_type}/{activ_fun}_lambda_p{lambda_p}lambda_eq{lambda_eq}'
A0_tensor = COOTensor(Tensor(np.stack((A0.row, A0.col),axis=1)),
Tensor(A0.data, dtype=mindspore.float32), A0.shape)
in_channels = 1
out_channels = 1
if activ_fun == 'swish':
activation = nn.SiLU()
if activ_fun == 'elu':
activation = nn.ELU()
if activ_fun == 'gelu':
activation = nn.GELU()
if grid_type == 'structure':
model = MultiScaleGNNStructure(in_channels, out_channels, activation)
if grid_type == 'unstructure':
model = MultiScaleGNN(in_channels, out_channels, activation, A0)
# print(model)
p_hat = run_test(model)
MSE = np.mean((p_hat - p_test)**2)
print(MSE)
sio.savemat(save_dir+'/results.mat',{'p_hat':p_hat,
'p_test':p_test})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenruilin2024/multiscale-gnn.git
git@gitee.com:chenruilin2024/multiscale-gnn.git
chenruilin2024
multiscale-gnn
MultiscaleGNN
master

Search