-
Notifications
You must be signed in to change notification settings - Fork 1
/
train_3.2.1.sh
37 lines (30 loc) · 912 Bytes
/
train_3.2.1.sh
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
#bash
#0.00001, 0.0001, 0.001,
for id in {1..10..1}
do
for Nx in 10 12 14 16 18 20 #25 30 40 50 60 80 100 120 150
do
python run_3.2.1.py --Nx_EQs ${Nx} --net_type "pinn"+$"$id" --epochs_adam 20000
echo ${name}+$"$g"+"-"+$"$Nx"+" completed!"
done
done
#
for id in {1..10..1}
do
for g in 0.00001 0.0001 0.001
do
python run_3.2.1.py --Nx_EQs 20 --g_weight ${g} --net_type "gpinn"+$"$g"+$"$id" --epochs_adam 20000
echo ${name}+$"$g"+"-"+$"$Nx"+" completed!"
done
done
for id in {1..10..1}
do
for g in 0.01 0.1 1.0
do
for Nx in 10 12 14 16 18 20 # 25 30 40 50 60 80 100 120 150
do
python run_3.2.1.py --Nx_EQs ${Nx} --g_weight ${g} --net_type "gpinn"+$"$g"+$"$id" --epochs_adam 20000
echo ${name}+$"$g"+"-"+$"$Nx"+" completed!"
done
done
done