-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupervised_experiments.py
More file actions
156 lines (131 loc) · 5.36 KB
/
supervised_experiments.py
File metadata and controls
156 lines (131 loc) · 5.36 KB
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
import pandas as pd
import numpy as np
import warnings
from argparse import ArgumentParser
from pymystem3 import Mystem
from scipy.stats import spearmanr
from sklearn.model_selection import train_test_split
from sklearn.svm import SVC
from sklearn.neural_network import MLPClassifier
from sklearn.neighbors import KNeighborsClassifier
from sklearn.tree import DecisionTreeClassifier
from sklearn.ensemble import RandomForestClassifier, AdaBoostClassifier
from sklearn.naive_bayes import GaussianNB
from sklearn.metrics import accuracy_score, precision_score, recall_score, f1_score, roc_auc_score
from tqdm import tqdm
morph = Mystem()
def acquiring(wordvecs, compvecs, pos):
if pos == 'nouns':
comp = pd.read_csv('compounds_NN_top10000_annotated.csv')
else:
comp = pd.read_csv('compounds_AN_top10000_annotated.csv')
part1 = list(comp['Часть 1'].values)[250:]
part2 = list(comp['Часть 2'].values)[250:]
values = list(comp['Композициональность'].values)[250:]
compounds = []
classes = []
for w1, w2, v in zip(part1, part2, values):
if v != 2 and v != -1:
lem_w1 = morph.lemmatize(w1)[0]
lem_w2 = morph.lemmatize(w2)[0]
compounds.append('_'.join([lem_w1, lem_w2]))
classes.append(v)
vecs1 = []
vecs2 = []
vecsc = []
true_comp_class = []
words = []
comps = []
with open(wordvecs) as w:
for line in w:
words.append(line.split())
with open(compvecs) as c:
for line in c:
comps.append(line.split())
for compound, value in zip(compounds, classes):
comp_flag = 0
w1_flag = 0
w2_flag = 0
for line in comps:
if compound == line[0]:
vecc = np.array(line[1:]).astype(np.float32)
comp_flag = 1
w1 = compound.split('_')[0]
w2 = compound.split('_')[1]
if comp_flag:
for line in words:
if w1 == line[0]:
vec1 = np.array(line[1:]).astype(np.float32)
w1_flag = 1
break
for line in words:
if w2 == line[0]:
w2_flag = 1
vec2 = np.array(line[1:]).astype(np.float32)
break
if comp_flag and w1_flag and w2_flag:
vecs1.append(vec1)
vecs2.append(vec2)
vecsc.append(vecc)
true_comp_class.append(value)
print(len(vecsc), 'examples retrieved for experiment')
return vecs1, vecs2, vecsc, true_comp_class
def make_train_data(w1vecs, w2vecs, compvecs):
train = np.concatenate((np.array(w1vecs), np.array(w2vecs), np.array(compvecs)), axis=1)
print('Classification data created with shape', train.shape)
return train
if __name__ == '__main__':
parser = ArgumentParser(description='Unsupervised metrics experiment')
parser.add_argument('wordvecs', help='word vectors dump')
parser.add_argument('compvecs', help='compounds vectors dump')
args = parser.parse_args()
w1, w2, c, true = acquiring(args.wordvecs, args.compvecs, 'nouns')
vecs = make_train_data(w1, w2, c)
accuracies = []
precision1 = []
precision0 = []
recall1 = []
recall0 = []
f11 = []
f10 = []
spearman = []
rocaucs = []
Cs = [1]
kernels = [1]
for C in Cs:
for kernel in kernels:
print(C, kernel)
for state in tqdm(range(42, 67)):
X_train, X_test, y_train, y_test = train_test_split(vecs, true, test_size=.25, random_state=state)
clf = SVC(C=1, kernel='linear', random_state=42)
#clf = MLPClassifier(alpha=1, solver='lbfgs', hidden_layer_sizes=(200,20,20, ), random_state=42)
#clf = DecisionTreeClassifier(max_depth=10, max_features=20, random_state=42)
#clf = GaussianNB()
clf.fit(X_train, y_train)
pred = clf.predict(X_test)
accuracies.append(accuracy_score(pred, y_test))
precision1.append(precision_score(pred, y_test))
precision0.append(precision_score(pred, y_test, pos_label=0))
recall1.append(recall_score(pred, y_test))
recall0.append(recall_score(pred, y_test, pos_label=0))
f11.append(f1_score(pred, y_test))
f10.append(f1_score(pred, y_test, pos_label=0))
print(pred, y_test)
try:
rocaucs.append(roc_auc_score(pred, y_test))
except:
pass
with warnings.catch_warnings():
warnings.filterwarnings('error')
try:
corr = spearmanr(pred, y_test)[0]
spearman.append(corr)
except Warning:
spearman.append(0)
print('accuracy=', '%.4f' % np.mean(accuracies))
print('precision=', ['%.4f' % np.mean(precision1), '%.4f' % np.mean(precision0)])
print('recall=', ['%.4f' % np.mean(recall1), '%.4f' % np.mean(recall0)])
print('f1=',['%.4f' % np.mean(f11), '%.4f' % np.mean(f10)])
print('spearman=', '%.4f' % np.mean(spearman))
print('roc_auc=', '%.4f' % np.mean(rocaucs))
print('.....................................')