-
Notifications
You must be signed in to change notification settings - Fork 0
/
weightedSVM.py
executable file
·244 lines (225 loc) · 11.2 KB
/
weightedSVM.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
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
weightedSVM.py
Desc : Weighted SVM algorithm used to predict circRNA-disease associations.
Usage: ./weightedSVM.py directory-contains-feature-files outDir randomSeed
E.g. : ./weightedSVM.py ./features ./weightedSVM-outdir 10
Coder: linwei, etc
Created date: 20180305
'''
import time
import numpy as np
from numpy import linalg as LA
from sklearn.model_selection import train_test_split
from sklearn.model_selection import ShuffleSplit
from sklearn.preprocessing import StandardScaler
from sklearn.decomposition import PCA
from sklearn.model_selection import KFold
from sklearn.svm import LinearSVC
from sklearn.metrics import confusion_matrix
from sklearn.metrics import recall_score
from sklearn.metrics import precision_score
from scipy import stats
import sys
from os import listdir
from os.path import isfile, join
if(len(sys.argv) != 4):
sys.exit("Usage: %s directory-for-input-files outdir randomSeed\n" %(sys.argv[0]))
def calPRAUC(ranks, nTPs, topN):
cumPRAUC = 0
posRecalls = list()
for i in range(topN):
if(ranks[i] < nTPs):
posRecalls.append(1)
else:
posRecalls.append(0)
curSum = posRecalls[0]
prevRecall = round(posRecalls[0] / nTPs, 4)
prevPrec = round(posRecalls[0], 4)
for i in range(1, topN):
curSum += posRecalls[i]
recall = round(curSum / nTPs, 4)
prec = round(curSum / (i+1), 4)
cumPRAUC += ((recall - prevRecall) * (prevPrec + prec) / 2)
prevRecall = recall
prevPrec = prec
cumPRAUC = round(cumPRAUC, 4)
return cumPRAUC
inpath = sys.argv[1]
outdir = sys.argv[2]
rs = int(sys.argv[3])
nfolds = 5
topN = 500
T = 30
C = np.power(10.0, range(-7, 2))
R = np.power(2.0, range(5, 15))
nC = len(C)
nR = len(R)
dFeatures = [f for f in listdir(inpath) if isfile(join(inpath, f))]
for df in dFeatures:
print("Processing %s" %(df) )
dId = df.split('_')[0]
pf = "/".join((inpath, df)) #processing input file: df
outfile = ".".join((dId, "txt"))
of = "/".join((outdir, outfile))
# featImp = ".".join((dId, "impFeat")) #feature importance
# fif = "/".join((outdir, featImp))
eRecalls = np.zeros(nfolds)
ePrecisions = np.zeros(nfolds)
ePRAUCs = np.zeros(nfolds)
d = np.loadtxt(pf, delimiter = ',')
p = d[d[:, 24] == 1, :]
u = d[d[:, 24] == 0, :]
X_p = p[:, 0:24]
y_p = p[:, 24]
X_u = u[:, 0:24]
y_u = u[:, 24]
y_u = np.ones(y_u.shape[0]) * -1
#nfolds to evaluate the performance
ikf = 0
kf = KFold(n_splits = nfolds, shuffle = True, random_state = rs)
X_p_splits = list(kf.split(X_p))
X_u_splits = list(kf.split(X_u))
for ikf in range(nfolds):
p_train_index, p_test_index = X_p_splits[ikf]
u_train_index, u_test_index = X_u_splits[ikf]
X_p_train = X_p[p_train_index]
y_p_train = y_p[p_train_index]
X_p_test = X_p[p_test_index]
y_p_test = y_p[p_test_index]
X_u_train= X_u[u_train_index]
y_u_train= y_u[u_train_index]
X_u_test = X_u[u_test_index]
y_u_test = y_u[u_test_index]
# print("Train:", X_p_train.shape, "test:", X_p_test.shape)
start_time = time.time()
cvMeans = np.zeros( nC * nR )
cvStds = np.zeros(nC * nR )
ithPair = 0
#nested nfolds to select optimal parameters
kf2 = KFold(n_splits = nfolds, shuffle = True, random_state = rs)
for c in C:
for r in R:
recalls = np.zeros(nfolds) #recall rate per each c-r pair
X_p_cv_splits = list(kf2.split(X_p_train))
X_u_cv_splits = list(kf2.split(X_u_train))
for ikf2 in range(nfolds):
p_train_cv_index, p_val_cv_index = X_p_cv_splits[ikf2]
u_train_cv_index, u_val_cv_index = X_u_cv_splits[ikf2]
X_p_cv_train = X_p_train[p_train_cv_index]
y_p_cv_train = y_p_train[p_train_cv_index]
X_p_cv_val = X_p_train[p_val_cv_index]
y_p_cv_val = y_p_train[p_val_cv_index]
X_u_cv_train = X_u_train[u_train_cv_index]
y_u_cv_train = y_u_train[u_train_cv_index]
X_u_cv_val = X_u_train[u_val_cv_index]
y_u_cv_val = y_u_train[u_val_cv_index]
#mix validation + unlabel for transductive learning to see how it perform on validation set
X_pu_cv_train = np.concatenate((X_p_cv_train, X_u_cv_train), axis = 0)
y_pu_cv_train = np.concatenate((y_p_cv_train, y_u_cv_train), axis = 0)
X_pu_cv_val = np.concatenate((X_p_cv_val, X_u_cv_val), axis = 0)
y_pu_cv_val = np.concatenate((y_p_cv_val, y_u_cv_val), axis = 0)
scaler = StandardScaler().fit(X_pu_cv_train)
X_pu_cv_train_transformed = scaler.transform(X_pu_cv_train)
X_pu_cv_val_transformed = scaler.transform(X_pu_cv_val)
# pca = PCA(0.99, svd_solver="full", random_state = 0)
# pca.fit(X_pu_cv_train_transformed)
# X_pu_cv_train_transformed = pca.transform(X_pu_cv_train_transformed)
# X_pu_cv_val_transformed = pca.transform(X_pu_cv_val_transformed)
clf = LinearSVC(penalty = "l2", loss = "hinge", C = c, class_weight = { -1: 1, 1: r}, random_state = 1)
clf.fit(X_pu_cv_train_transformed, y_pu_cv_train)
scores = clf.decision_function(X_pu_cv_val_transformed) / LA.norm(clf.coef_)
orderScores = np.argsort(-scores)
topNIndex = orderScores[:topN]
truePosIndex = np.array(range(y_p_cv_val.shape[0]) )
truePosRecall = np.intersect1d(topNIndex, truePosIndex, assume_unique=True)
recall = truePosRecall.shape[0] / truePosIndex.shape[0]
# recall = calPRAUC(orderScores, y_p_cv_val.shape[0], topN)
recalls[ikf2] = recall
#scores = clf.predict(X_pu_cv_val_transformed)
#nPos = np.sum(scores == 1)
#if nPos == 0:
# nPos = 1
#posRate = nPos / y_pu_cv_val.shape[0]
#recall = np.sum(scores[:y_p_cv_val.shape[0]] == 1) / y_p_cv_train.shape[0];
#recall = recall_score(y_pu_cv_val, scores)
#recalls[ikf2] = recall * recall / posRate
#print("For cost: %f, class_weight ratio: %f, fold:%d, recall:%f, F' measure: %f " %(c, r, ikf2, recall, recalls[ikf2]))
#print(confusion_matrix(y_pu_cv_val, scores))
avgRecall = np.mean(recalls)
cvMeans[ithPair] = avgRecall
stdRecall = np.std(recalls)
cvStds[ithPair] = stdRecall
#print("For cost: %f, class_weight ratio: %f, rank of top %d: average recall: %.2f%%, std of recall: %.2f" %(c, r, topN, avgRecall*100, stdRecall ))
#print("For each fold:", recalls)
ithPair += 1
elapsed_time = time.time() - start_time
cvMaxMeanIndex = np.argmax(cvMeans)
optimalC = C[cvMaxMeanIndex // nR]
optimalR = R[cvMaxMeanIndex % nR]
# print("cv-MaxMean:", cvMeans[cvMaxMeanIndex], "cv-MaxMean_std:", cvStds[cvMaxMeanIndex], "cvMaxMeanIndex:", cvMaxMeanIndex)
print("disease:", dId, ", randomSeed:", rs, ", ithFold:", ikf, ", optimalC:", optimalC, ", optimalR:", optimalR, ", cv-MaxMean:", cvMeans[cvMaxMeanIndex])
# print("cross-validation time elapsed: %.2f" %(elapsed_time) )
#After parameter selection, we evaluate on the test set with the optimal parameters
X_test = np.concatenate((X_p_test, X_u_test), axis = 0)
y_test = np.concatenate((y_p_test, y_u_test), axis = 0)
X_train = np.concatenate((X_p_train, X_u_train), axis = 0)
y_train = np.concatenate((y_p_train, y_u_train), axis = 0)
scaler = StandardScaler().fit(X_train)
X_train_transformed = scaler.transform(X_train)
X_test_transformed = scaler.transform(X_test)
# pca = PCA(0.99, svd_solver="full", random_state = 0)
# pca.fit(X_train_transformed)
# X_train_transformed = pca.transform(X_train_transformed)
# X_test_transformed = pca.transform(X_test_transformed)
clf = LinearSVC(penalty = "l2", loss = "hinge", C = optimalC, class_weight = { -1: 1, 1: optimalR}, random_state = 1)
clf.fit(X_train_transformed, y_train)
#scores = clf.predict(X_test_transformed)
scores = clf.decision_function(X_test_transformed) / LA.norm(clf.coef_)
# scoreList = [str(item) for item in scores]
# scoreStr = ','.join(scoreList)
orderScores = np.argsort(-scores)
orderList = [str(item) for item in orderScores]
orderStr = ','.join(orderList)
topNIndex = orderScores[:topN]
truePosIndex = np.array(range(y_p_test.shape[0]) )
truePosRecall = np.intersect1d(topNIndex, truePosIndex, assume_unique=True)
recall = truePosRecall.shape[0] / truePosIndex.shape[0]
#recall = recall_score(y_test, scores)
eRecalls[ikf] = recall
#precision = precision_score(y_test, scores)
precision = truePosRecall.shape[0] / topN
ePrecisions[ikf] = precision
prauc = calPRAUC(orderScores, y_p_test.shape[0], topN)
ePRAUCs[ikf] = prauc
print("dId: %s, randomState: %d, %dth-fold, recall: %.2f%%, precision: %.2f%%, prauc: %.4f" %(dId, rs, ikf, recall*100, precision*100, prauc))
with open(of, "a") as output:
output.write("%s-RandomState%d-%dth fold, number of true positive:%d\n" %(dId, rs, ikf, y_p_test.shape[0]))
output.write("%s\n" %(orderStr))
output.write("END\n")
mRecall = np.mean(eRecalls)
stdRecall = np.std(eRecalls)
mPrec = np.mean(ePrecisions)
stdPrec = np.std(ePrecisions)
mPRAUC = np.mean(ePRAUCs)
stdPRAUC = np.std(ePRAUCs)
recallList = [str(item) for item in eRecalls]
precList = [str(item) for item in ePrecisions]
praucList = [str(item) for item in ePRAUCs]
recallStr = ','.join(recallList)
precStr = ','.join(precList)
praucStr = ','.join(praucList)
with open (of, "a") as output:
output.write("%s-RandomState%d, mean+-std recall:%.4f,%.4f\n" %(dId, rs, mRecall, stdRecall))
output.write("%s-RandomState%d, mean+-std precision:%.4f,%.4f\n" %(dId, rs, mPrec, stdPrec))
output.write("%s-RandomState%d, mean+-std prauc:%.4f,%.4f\n" %(dId, rs, mPRAUC, stdPRAUC))
output.write("%s-RandomState%d, 5-fold cv recall:%s\n" %(dId, rs, recallStr))
output.write("%s-RandomState%d, 5-fold cv precision:%s\n" %(dId, rs, precStr))
output.write("%s-RandomState%d, 5-fold cv prauc:%s\n" %(dId, rs, praucStr))
output.write("END\n")
print("summary of %s, randomSeed: %d, top %d, mean/std of prauc, mean/std of recall, mean/std of precision: %f,%f,%f,%f,%f,%f" %(dId, rs, topN, mPRAUC, stdPRAUC, mRecall, stdRecall, mPrec, stdPrec))
print(eRecalls)
print(ePrecisions)
print(ePRAUCs)
print("END")