forked from benlawson/expert-broccoli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
predict_all_multi.py
150 lines (116 loc) · 5.45 KB
/
predict_all_multi.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
import matplotlib
matplotlib.use("Agg")
import os
import numpy as np
from sklearn.model_selection import train_test_split
from sklearn.svm import SVC
from sklearn.naive_bayes import GaussianNB
from sklearn.neural_network import MLPClassifier
from sklearn.neighbors import KNeighborsClassifier
from sklearn.tree import DecisionTreeClassifier
# from sklearn.ensemble import RandomForestClassifier, AdaBoostClassifier
from sklearn.discriminant_analysis import QuadraticDiscriminantAnalysis
from sklearn.dummy import DummyClassifier
from xgboost import XGBClassifier
from keras.models import load_model
from sklearn.multiclass import OneVsRestClassifier
import joblib
from joblib import Parallel, delayed
from predict_help import calculate_p_r, plot_curve, filter_labels
WITHOUT_MOVIE = True
if WITHOUT_MOVIE:
prefix = "without_movie"
else:
prefix = "with_movie"
filenames = ["dummy", "nearestneighbors", "svm", "decisiontree", "neuralnet", "naivebayes", "lda", "xgb"]
classifiers = [
DummyClassifier(),
KNeighborsClassifier(3),
SVC(kernel="linear", C=0.025, probability=True),
DecisionTreeClassifier(max_depth=5),
# RandomForestClassifier(max_depth=5, n_estimators=10, max_features=1),
MLPClassifier(alpha=1),
# AdaBoostClassifier(),
GaussianNB(),
QuadraticDiscriminantAnalysis(),
XGBClassifier()
]
# note different from single label
def train_save(model, filename, representation_name):
folder = os.path.join(prefix, representation_name, "multiclass")
os.makedirs(folder, exist_ok=True)
try:
model.fit(X_train, y_train)
except ValueError:
model = OneVsRestClassifier(model)
model.fit(X_train, y_train)
# folder had prefix is in
joblib.dump(model, os.path.join(folder, "{}.joblib".format(filename)))
print("{0}: {1} acc".format(filename, model.score(X_test, y_test)))
one_hot, labels, _ = joblib.load(os.path.join(prefix, "labels_multiclass.joblib"))
y = np.argmax(one_hot, axis=1)
y_array = np.array(one_hot)
representation_files = ['{0}/pca_representation.joblib'.format(prefix), "{0}/inception_representations.joblib".format(prefix), "{0}/resnet_representations.joblib".format(prefix)]
# first is pca, then inception, then resnet
looper = list(zip(representation_files, ['pca', 'inception', 'resnet']))[:-1]
for representation_filename, representation_name in looper:
# get the training data
# all classifiers must use vector output
X = joblib.load(representation_filename)
X, y = filter_labels(X, y_array)
print(X.shape)
print(y.shape)
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=42)
# train all the classifiers
Parallel(n_jobs=-1)(delayed(train_save)(m, f,representation_name) for (m,f) in zip(classifiers, filenames))
for representation_filename, representation_name in looper:
algos = ["Dummy", "Nearest Neighbors", "SVM", "Decision Tree", "Single Layer Perceptron", "Naive Bayes", "LDA", "XGBoost",]
# get the training data
X = joblib.load(representation_filename)
X, y = filter_labels(X, y_array)
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=42)
if representation_name == 'inception':
X_img =joblib.load(os.path.join(prefix, "inception_preprocessed.joblib"))
X_img, y = filter_labels(X_img, y_array)
X_train_img, X_test_img, y_train, y_test = train_test_split(X_img, y, random_state=42)
if representation_name == 'resnet':
X_img =joblib.load(os.path.join(prefix, "resnet_preprocessed.joblib"))
X_img, y = filter_labels(X_img, y_array)
X_train_img, X_test_img, y_train, y_test = train_test_split(X_img, y, random_state=42)
# evaluate the classifiers
precision, recall, average_precision = [], [], []
for model_filename in filenames:
model = joblib.load(os.path.join(prefix, representation_name,"multiclass", "{0}.joblib".format(model_filename)))
try:
y_predict = model.predict_proba(X_test)
except AttributeError:
y_predict = model.predict(X_test)
try:
p, r, ap = calculate_p_r(y_test, y_predict)
except:
# some classifiers have weird output shapes
y_predict = np.array(y_predict)[:,:,0].T
p, r, ap = calculate_p_r(y_test, y_predict)
precision.append(p)
recall.append(r)
average_precision.append(ap)
# extra loop for fine-tuned stuff
if representation_name == 'inception':
model = load_model(os.path.join(prefix, "inception_multi_model-final.hdf5"))
y_predict = model.predict(np.array(X_test_img))
p, r, ap = calculate_p_r(y_test, y_predict)
precision.append(p)
recall.append(r)
average_precision.append(ap)
algos += [ "Fine-tuned InceptionNet"]
if representation_name == 'resnet':
model = load_model(os.path.join(prefix, "resnet_multi_model.hdf5"))
y_predict = model.predict(np.array(X_test_img))
p, r, ap = calculate_p_r(y_test, y_predict)
precision.append(p)
recall.append(r)
average_precision.append(ap)
algos += [ "Fine-tuned ResNet"]
print('plotting curve for {}'.format(representation_name))
joblib.dump((precision, recall, average_precision, representation_name+"multiclass", algos), ( os.path.join(prefix, representation_name,"multiclass", "predict_all_multi_stuff.joblib")))
plot_curve(precision, recall, average_precision, representation_name+"multiclass", algos, prefix)