-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrainensemble.py
More file actions
73 lines (55 loc) · 2.38 KB
/
trainensemble.py
File metadata and controls
73 lines (55 loc) · 2.38 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
import numpy as np
import data_helpers
from w2v import train_word2vec
from sklearn.utils import class_weight
from keras.models import Model
from keras.layers import *
import keras
np.random.seed(2)
embedding_dim = 100
batch_size = 32
num_epochs = 1
val_split = 0.09
min_word_count = 1
context = 12
print("Loading data...")
x, y, vocabulary, vocabulary_inv = data_helpers.load_data()
embedding_weights = train_word2vec(x, vocabulary_inv, embedding_dim, min_word_count, context)
shuffle_indices = np.random.permutation(np.arange(len(y)))
x_shuffled = x[shuffle_indices]
y_shuffled = y[shuffle_indices].argmax(axis=1)
print("Vocabulary Size: {:d}".format(len(vocabulary)))
layerinput = Input(shape=[267], dtype='int32')
layers1 = Embedding(len(vocabulary), embedding_dim, input_length=267, weights=embedding_weights)(layerinput)
layers1 = Conv1D(128, 3, padding='valid', activation='relu', strides=1)(layers1)
layers1 = Dropout(0.5)(layers1)
layers1 = MaxPooling1D(pool_size=3)(layers1)
layers1 = Conv1D(128, 4, padding='valid', activation='relu', strides=1)(layers1)
layers1 = Dropout(0.5)(layers1)
layers1 = MaxPooling1D(pool_size=3)(layers1)
layers1 = Conv1D(128, 4, padding='valid', activation='relu', strides=1)(layers1)
layers1 = Dropout(0.5)(layers1)
layers1 = MaxPooling1D(pool_size=4)(layers1)
layers2 = Conv1D(128, 4, padding='valid', activation='relu', strides=1)(layers1)
layers2 = Flatten()(layers2)
layers2 = Dense(40)(layers2)
layers2 = Activation('sigmoid')(layers2)
layers3 = GRU(80, return_sequences=True)(layers1)
layers3 = Dropout(0.5)(layers3)
layers3 = GRU(40, return_sequences=True)(layers3)
layers3 = Dropout(0.5)(layers3)
layers3 = GRU(20, return_sequences=True)(layers3)
layers3 = Dropout(0.5)(layers3)
layers3 = Flatten()(layers3)
layers4 = keras.layers.concatenate([layers2, layers3], axis=-1)
layers4 = Dropout(0.5)(layers4)
layers4 = Dense(30)(layers4)
layers4 = Dropout(0.5)(layers4)
layers4 = Dense(1)(layers4)
layers4 = Activation('sigmoid')(layers4)
model = Model(inputs=[layerinput], outputs=[layers4])
model.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])
model.summary()
#model.load_weights('finalensemble.py')
model.fit(x_shuffled, y_shuffled, batch_size=batch_size, nb_epoch=num_epochs, validation_split=val_split, verbose=1, class_weight=class_weight.compute_class_weight('balanced', np.unique(y_shuffled), y_shuffled))
#model.save('finalensemble2.py')