-
Notifications
You must be signed in to change notification settings - Fork 8
/
temp.py
84 lines (51 loc) · 1.72 KB
/
temp.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
__author__ = "Amin Aghaee"
__copyright__ = "Copyright 2018, Amin Aghaee"
#from Prob2Line import *
#pmap = np.load('./Results/NewTrainingRandom_strip_mixed/Pmamp_Fault_Australia.hdf5Australia_strip.mat.npz')
#pmap = pmap['matrix']
#p2l = prob2map(pmap)
#p2l.runMethod(coeff=0.66, eps = 3, iteration=350)
from DATASET import *
import scipy.io as sio
# --------------------------------------
testList = ['Australia_strip.mat', 'QUEST_strip.mat']
for T in testList:
ds_fname = DSDIR + T
ds = DATASET(ds_fname)
Z = np.zeros_like(ds.OUTPUT)
O = np.ones_like(ds.OUTPUT)
R = np.random.random(ds.OUTPUT.shape)
z = {}
o = {}
r = {}
pmap_list = [Z,R,O]
output_list = [z,r,o]
for i in range(3):
m = output_list[i]
m['Train_p'] = []
m['Train_n'] = []
m['Test_p'] = []
m['Test_n'] = []
m['All_p'] = []
m['All_n'] = []
pmap = pmap_list[i]
for w in range(9, 57, 4):
print("Teste: {} ----- W = {}".format(T, w))
[pos, neg] = ds.evaluate(pmap, w, 'train', etype='our')
m['Train_p'] += [pos]
m['Train_n'] += [neg]
[pos, neg] = ds.evaluate(pmap, w, 'test', etype='our')
m['Test_p'] += [pos]
m['Test_n'] += [neg]
[pos, neg] = ds.evaluate(pmap, w, 'all', etype='our')
m['All_p'] += [pos]
m['All_n'] += [neg]
sio.savemat(T[0:5]+'_extreme.mat' , [z,r,o] )
pmapname = '45_Pmamp_45_Fault_Quest.hdf5_on_QUEST_.npz'
outputname = 'Quest_on_Quest'
pmap = np.load(pmapname)['matrix']
png = np.uint8(pmap * 255)
im = Image.fromarray(png)
im.save(outputname + '.png')
im = Image.fromarray(pmap)
im.save(outputname + '.tiff')