-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
172 lines (154 loc) · 7.03 KB
/
run.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
import os
import torch
from torch import nn
from torch.autograd import Variable
from torch.utils.data import DataLoader, Dataset
from torchvision import transforms
from torchvision.utils import save_image
from scipy.stats.stats import pearsonr
from Progbar import Progbar
import pandas as pd
import numpy as np
device = torch.device("cuda:0" if torch.cuda.is_available() else 'cpu')
def to_img(x):
x = x.view(x.size(0), 1, 100, 50)
return x
num_epochs = 10
batch_size = 50
learning_rate = 1e-3
class SimulatedDataset(Dataset):
'''
每一个 Item 是 (5000, ) 的向量
'''
def __init__(self, simulated_csv_data_path, true_csv_data_path, transform=None):
self.simulated_csv_data = pd.read_csv(simulated_csv_data_path)
self.true_csv_data_path = pd.read_csv(true_csv_data_path)
self.transform = transform
def __len__(self):
return len(self.simulated_csv_data.columns) - 1
def __getitem__(self, index):
a_column_of_simulated_data = self.simulated_csv_data.iloc[:, index+1]
a_column_of_true_data = self.true_csv_data_path.iloc[:, index+1]
a_column_of_simulated_data = np.asarray(a_column_of_simulated_data).reshape(1,-1)
a_column_of_true_data = np.asarray(a_column_of_true_data).reshape(1,-1)
a_column_of_simulated_data = a_column_of_simulated_data / np.max(a_column_of_simulated_data)
a_column_of_true_data = a_column_of_true_data / np.max(a_column_of_true_data)
# if self.transform is not None:
# a_column_of_simulated_data = self.transform(a_column_of_simulated_data)
# a_column_of_true_data = self.transform(a_column_of_true_data)
simulated_true_pack = (a_column_of_simulated_data, a_column_of_true_data)
return simulated_true_pack
class AutoEncoder(nn.Module):
def __init__(self):
super(AutoEncoder, self).__init__()
self.encoder = nn.Sequential(
nn.Linear(5000, 512),
nn.ReLU(True),
nn.Linear(512, 128),
nn.ReLU(True),
nn.Linear(128, 64),
nn.ReLU(True))
self.decoder = nn.Sequential(
nn.Linear(64, 128),
nn.ReLU(True),
nn.Linear(128, 512),
nn.ReLU(True),
nn.Linear(512, 5000),
nn.Sigmoid())
def forward(self, x):
x = self.encoder(x)
x = self.decoder(x)
return x
model = AutoEncoder().to(device)
criterion = nn.BCELoss()
optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate, weight_decay=1e-5)
def predict(simulated_csv_data_path="./data/counts_simulated_dataset1_dropout0.05.csv",
true_csv_data_path="./data/true_counts_simulated_dataset1_dropout0.05.csv",
save_model_filename="./model_dropout0.05.pth", num_epochs = 20):
dataset = SimulatedDataset(simulated_csv_data_path, true_csv_data_path)
dataloader = DataLoader(dataset, batch_size=50, shuffle=True, num_workers=3)
model = AutoEncoder().to(device)
criterion = nn.MSELoss()
optimizer = torch.optim.Adam(model.parameters(), lr=1e-3, weight_decay=1e-5)
if os.path.exists(save_model_filename):
model.load_state_dict(torch.load(save_model_filename, "cpu"))
else:
model.train()
for epoch in range(num_epochs):
print('epoch [{}/{}]'.format(epoch + 1, num_epochs))
prog = Progbar(len(dataloader))
for i, data in enumerate(dataloader):
(noisy_data, true_data) = data
noisy_data = Variable(noisy_data).float().to(device)
true_data = Variable(true_data).float().to(device)
# ===================forward=====================
output = model(noisy_data)
loss = criterion(output, true_data)
MSE_loss = nn.MSELoss()(output, true_data)
np1 = output.cpu().detach().numpy().reshape(-1)
np2 = true_data.cpu().detach().numpy().reshape(-1)
PCC, p_value = pearsonr(np1, np2)
# ===================backward====================
optimizer.zero_grad()
loss.backward()
optimizer.step()
# =====================log=======================
prog.update(i + 1, [("loss", loss.item()), ("MSE_loss", MSE_loss.data), ("PCC", PCC), ("p-value", p_value)])
# ===================log========================
# print('epoch [{}/{}], loss:{:.4f}, MSE_loss:{:.4f}, PCC:{:.4f}, p-value:{:.4f}'
# .format(epoch + 1, num_epochs, loss.data, MSE_loss.data, PCC, p_value))
torch.save(model.state_dict(), save_model_filename)
model.eval()
dataloader2 = DataLoader(dataset, batch_size=2000, shuffle=True, num_workers=3)
for data in dataloader2:
(noisy_data, true_data) = data
noisy_data = Variable(noisy_data).float().to(device)
true_data = Variable(true_data).float().to(device)
# ===================forward=====================
output = model(noisy_data)
loss = criterion(output, true_data)
MSE_loss = nn.MSELoss()(output, true_data)
np1 = output.cpu().detach().numpy().reshape(-1)
np2 = true_data.cpu().detach().numpy().reshape(-1)
PCC, p_value = pearsonr(np1, np2)
# print('loss:{:.4f}, MSE_loss:{:.4f}, PCC:{:.4f}, p-value:{:.4f}'
# .format(loss.data, MSE_loss.data, PCC, p_value))
mse=MSE_loss.data
o_np_1 = output.data.numpy()
a = pd.read_csv(simulated_csv_data_path)
b = pd.read_csv(true_csv_data_path)
for i in range(2000):
a.iloc[:, i+1] = np.asarray(np.floor(o_np_1[i][0] * (np.max(a.iloc[:, i+1]))), dtype="int")
def getPCC(arr1, arr2):
PCC, p_value = pearsonr(
np.asarray(arr1).reshape(2000*5000),
np.asarray(arr2).reshape(2000*5000))
return PCC
pcc = getPCC(a.iloc[:,1:],b.iloc[:,1:])
print("predict PCC:{:.4f} MSE:{:.8f}".format(pcc,mse))
a.to_csv("./data/BCE_predict_PCC_{:.4f}_MSE_{:.8f}_".format(pcc,mse)+simulated_csv_data_path[7:])
predict(
"./data/counts_simulated_dataset1_dropout0.05.csv",
"./data/true_counts_simulated_dataset1_dropout0.05.csv",
"./BCE_model_dropout0.05.pth"
)
predict(
"./data/counts_simulated_dataset1_dropout0.10.csv",
"./data/true_counts_simulated_dataset1_dropout0.10.csv",
"./BCE_model_dropout0.10.pth"
)
predict(
"./data/counts_simulated_dataset1_dropout0.15.csv",
"./data/true_counts_simulated_dataset1_dropout0.15.csv",
"./BCE_model_dropout0.15.pth"
)
predict(
"./data/counts_simulated_dataset1_dropout0.20.csv",
"./data/true_counts_simulated_dataset1_dropout0.20.csv",
"./BCE_model_dropout0.20.pth"
)
predict(
"./data/counts_simulated_dataset1_dropout0.25.csv",
"./data/true_counts_simulated_dataset1_dropout0.25.csv",
"./BCE_model_dropout0.25.pth"
)