-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsentence_classification_char_cnn_rnn.py
More file actions
executable file
·359 lines (286 loc) · 13.5 KB
/
Copy pathsentence_classification_char_cnn_rnn.py
File metadata and controls
executable file
·359 lines (286 loc) · 13.5 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import random
import numpy as np
import pandas as pd
import tensorflow as tf
from tensorflow.contrib import rnn
import time
import datetime
import os
np.random.seed(0)
print("PROGRAM START !!!")
'''''''''''''''''''''''''''''''''''''''''''''
READING & PARSING DATA
'''''''''''''''''''''''''''''''''''''''''''''
csvfile = "./csv/sentence_full.tsv"
list_data = []
list_len = []
total = ""
with open(csvfile, 'r', encoding="utf8") as tsv:
for line in tsv:
sep = line.split("\t")
sentence_class = int(sep[0].replace("\ufeff", ""))
sentence_english = sep[1].lower()
total += sentence_english
list_data.append([sentence_english, sentence_class])
dic = list(set(total)) # id -> char
dic.insert(0, "P") # P:PAD symbol(0)
rdic = {w: i for i, w in enumerate(dic)}
print("RDIC")
print(rdic)
VOCAB_SIZE = len(dic)
print("VOCABULARY SIZE : %d" % VOCAB_SIZE)
CLASS_SIZE = len(set([c[1] for c in list_data]))
print("CLASS SIZE : %d" % CLASS_SIZE)
list_data.sort(key=lambda s: len(s[0]))
MAX_LEN = len(list_data[-1][0]) + 1
print("SENTENCE MAX LEN : %d" % MAX_LEN)
list_data = [[[rdic[char] for char in data[0]], data[1]] for data in list_data]
random.shuffle(list_data, random.random)
list_data_test = list_data[:200]
list_data = list_data[200:]
print("TOTAL TRAIN DATASET : %d" % (len(list_data)))
print("TOTAL TEST DATASET : %d" % (len(list_data_test)))
'''''''''''''''''''''''''''''''''''''''''''''
GENERATING BATCH
'''''''''''''''''''''''''''''''''''''''''''''
def generate_batch(size):
assert size <= len(list_data)
data_x = np.zeros((size, MAX_LEN), dtype=np.int)
data_y = np.zeros((size, CLASS_SIZE), dtype=np.int)
index = np.random.choice(range(len(list_data)), size, replace=False)
for a in range(len(index)):
idx = index[a]
x = list_data[idx][0]
x = x[:MAX_LEN - 1] + [0] * max(MAX_LEN - len(x), 1)
y = list_data[idx][1]
y = np.eye(CLASS_SIZE)[y]
data_x[a] = x
data_y[a] = y
return data_x, data_y
def generate_batch_test(size):
assert size <= len(list_data_test)
data_x = np.zeros((size, MAX_LEN), dtype=np.int)
data_y = np.zeros((size, CLASS_SIZE), dtype=np.int)
index = np.random.choice(range(len(list_data_test)), size, replace=False)
for a in range(len(index)):
idx = index[a]
x = list_data_test[idx][0]
x = x[:MAX_LEN - 1] + [0] * max(MAX_LEN - len(x), 1)
y = list_data_test[idx][1]
y = np.eye(CLASS_SIZE)[y]
data_x[a] = x
data_y[a] = y
return data_x, data_y
'''''''''''''''''''''''''''''''''''''''''''''
MAKE TENSORFLOW GRAPH
'''''''''''''''''''''''''''''''''''''''''''''
with tf.Graph().as_default():
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
config.allow_soft_placement = True
sess = tf.Session(config=config)
with sess.as_default():
NUM_EPOCH = 351
BATCH_SIZE = 30
EMBED_DIM = 100
CNN_NUM_FILTER = 20
CNN_SEQ_FEAT_DIM = 6
RNN_LAYER_SIZE = 2
RNN_STATE_SIZE = 80
'''''''''''''''''''''''''''''''''''''''''''''
DEFINE VARIABLE AND OPs
'''''''''''''''''''''''''''''''''''''''''''''
with tf.device("/cpu:0"):
# Input parameter
X = tf.placeholder(tf.int32, [None, MAX_LEN], name="X")
Y = tf.placeholder(tf.int32, [None, CLASS_SIZE], name="Y")
dropout_keep_prob = tf.placeholder(tf.float32, name="dropout_keep_prob")
# Char embeddings
with tf.name_scope("char_embedding"):
embeddings = tf.get_variable("embeddings", [VOCAB_SIZE, EMBED_DIM])
embed_X = tf.nn.embedding_lookup(embeddings, X)
embed_X = tf.expand_dims(embed_X, -1)
# CNN
filter_sizes = [3, 6, 9]
pooled_outputs = []
for i, filter_size in enumerate(filter_sizes):
with tf.name_scope("conv-maxpool-%s" % filter_size):
# Convolution Layer
filter_shape = [filter_size, EMBED_DIM, 1, CNN_NUM_FILTER]
W = tf.Variable(tf.truncated_normal(filter_shape, stddev=0.1), name="W")
b = tf.Variable(tf.constant(0.1, shape=[CNN_NUM_FILTER]), name="b")
conv = tf.nn.conv2d(
embed_X,
W,
strides=[1, 1, 1, 1],
padding="VALID",
name="conv")
# Apply nonlinearity
h = tf.nn.relu(tf.nn.bias_add(conv, b), name="relu")
print("h.shape = %s" % h.get_shape())
# Max-pooling over the outputs
pooled = tf.nn.max_pool(
h,
ksize=[1, MAX_LEN - filter_size + 2 - CNN_SEQ_FEAT_DIM, 1, 1],
strides=[1, 1, 1, 1],
padding="VALID",
name="pool")
pooled_outputs.append(pooled)
print("pooled.shape = %s" % (pooled.get_shape()))
# Combine all the pooled features
with tf.name_scope("reshape_flat"):
num_filters_total = CNN_NUM_FILTER * len(filter_sizes)
h_pool = tf.concat(pooled_outputs, axis=3)
h_pool_flat = tf.reshape(h_pool, [-1, CNN_SEQ_FEAT_DIM, num_filters_total])
print("h_pool_flat.shape = %s" % h_pool_flat.get_shape())
# Add dropout
with tf.name_scope("dropout"):
h_drop = tf.nn.dropout(h_pool_flat, dropout_keep_prob)
print("h_drop.shape = %s" % h_drop.get_shape())
# RNN
with tf.name_scope("multi_rnn_layer"):
cells = []
for a in range(RNN_LAYER_SIZE):
cell = rnn.BasicLSTMCell(RNN_STATE_SIZE)
cell = rnn.DropoutWrapper(cell, output_keep_prob=dropout_keep_prob)
cells.append(cell)
multi_rnn = rnn.MultiRNNCell(cells, state_is_tuple=True)
rnn_output, rnn_state = tf.nn.dynamic_rnn(multi_rnn, h_drop, dtype=tf.float32)
print("rnn_output.shape = %s" % rnn_output.get_shape())
# full-connected layer
with tf.name_scope("output_dense_layer"):
# use last rnn output
"""
rnn_output_last = rnn_output[:, -1, :]
W = tf.Variable(tf.truncated_normal([RNN_STATE_SIZE, CLASS_SIZE], stddev=0.1), name="W")
b = tf.Variable(tf.constant(0.1, shape=[CLASS_SIZE]), name="b")
print("rnn_output_last.shape = %s" % rnn_output_last.get_shape())
scores = tf.nn.xw_plus_b(rnn_output_last, W, b, name="scores")
predictions = tf.argmax(scores, 1, name="predictions")
print("output_matmul.shape = %s" % scores.get_shape())
print("predictions.shape = %s" % predictions.get_shape())
"""
# use all rnn seq output
rnn_output_flat = tf.reshape(rnn_output, [-1, CNN_SEQ_FEAT_DIM * RNN_STATE_SIZE])
W = tf.Variable(tf.truncated_normal([CNN_SEQ_FEAT_DIM * RNN_STATE_SIZE, CLASS_SIZE], stddev=0.1), name="W")
b = tf.Variable(tf.constant(0.1, shape=[CLASS_SIZE]), name="b")
print("rnn_output_flat.shape = %s" % rnn_output_flat.get_shape())
scores = tf.nn.xw_plus_b(rnn_output_flat, W, b, name="scores")
print("output_matmul.shape = %s" % scores.get_shape())
predictions = tf.argmax(scores, 1, name="predictions")
print("predictions.shape = %s" % predictions.get_shape())
# Calculate mean cross-entropy loss
with tf.name_scope("l2_loss"):
#losses = tf.nn.softmax_cross_entropy_with_logits(logits=scores, labels=Y)
losses = tf.nn.softmax_cross_entropy_with_logits(logits=scores, labels=Y) \
+ 0.01 * tf.nn.l2_loss(W) + 0.01 * tf.nn.l2_loss(b)
loss = tf.reduce_mean(losses, name="loss")
# Calculate Accuracy
with tf.name_scope("accuracy"):
correct_predictions = tf.equal(predictions, tf.argmax(Y, 1))
accuracy = tf.reduce_mean(tf.cast(correct_predictions, "float"), name="accuracy")
# Train optimizer
global_step = tf.Variable(0, name="global_step", trainable=False)
optimizer = tf.train.AdamOptimizer(1e-4)
grads_and_vars = optimizer.compute_gradients(loss)
train_op = optimizer.apply_gradients(grads_and_vars, global_step=global_step)
'''''''''''''''''''''''''''''''''''''''''''''
CHECK POINT & SUMMARY
'''''''''''''''''''''''''''''''''''''''''''''
# Output directory for models and summaries
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
out_dir = os.path.abspath(os.path.join(os.path.curdir, "summary", timestamp))
print("LOGDIR = %s" % out_dir)
# Summaries for loss and accuracy
loss_summary = tf.summary.scalar("loss", loss)
acc_summary = tf.summary.scalar("accuracy", accuracy)
# Train Summaries
train_summary_op = tf.summary.merge([loss_summary, acc_summary])
#train_summary_op = tf.summary.merge_all()
train_summary_dir = os.path.join(out_dir, "summaries", "train")
train_summary_writer = tf.summary.FileWriter(train_summary_dir, sess.graph)
# Test summaries
test_summary_op = tf.summary.merge([loss_summary, acc_summary])
#test_summary_op = tf.summary.merge_all()
test_summary_dir = os.path.join(out_dir, "summaries", "test")
test_summary_writer = tf.summary.FileWriter(test_summary_dir, sess.graph)
# Checkpoint directory. Tensorflow assumes this directory already exists so we need to create it
checkpoint_dir = os.path.abspath(os.path.join(out_dir, "checkpoints"))
checkpoint_prefix = os.path.join(checkpoint_dir, "model")
if not os.path.exists(checkpoint_dir):
os.makedirs(checkpoint_dir)
saver = tf.train.Saver(tf.global_variables(), max_to_keep=None)
'''''''''''''''''''''''''''''''''''''''''''''
TRAIN
'''''''''''''''''''''''''''''''''''''''''''''
sess.run(tf.global_variables_initializer())
def train(train_x, train_y, writer=False):
feed_dict = {
X: train_x,
Y: train_y,
dropout_keep_prob: 0.7
}
_, g_step, summaries, train_loss, train_acc = sess.run(
[train_op, global_step, train_summary_op, loss, accuracy],
feed_dict)
if writer:
train_summary_writer.add_summary(summaries, g_step)
return train_loss, train_acc, g_step
def test(test_x, test_y, writer=False):
feed_dict = {
X: test_x,
Y: test_y,
dropout_keep_prob: 1.0
}
_, g_step, summaries, test_loss, test_acc = sess.run(
[train_op, global_step, test_summary_op, loss, accuracy],
feed_dict)
if writer:
test_summary_writer.add_summary(summaries, g_step)
return test_loss, test_acc, g_step
def predict(pred_x):
feed_dict = {
X: pred_x,
dropout_keep_prob: 1.0
}
pred_y = sess.run([predictions], feed_dict)
return pred_y
epoch = -1
epoch_tmp = -1
step = 0
while(True):
batch_x, batch_y = generate_batch(BATCH_SIZE)
_1, _2, g_step = train(batch_x, batch_y, False)
step += 1
epoch_tmp = int((BATCH_SIZE * step) / len(list_data))
if (epoch_tmp != epoch) and (epoch_tmp % 10 == 0):
epoch = epoch_tmp
batch_x, batch_y = generate_batch(len(list_data))
train_loss, train_acc, _3 = train(batch_x, batch_y, train_summary_writer)
time_str = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print("%s:[TRAIN] epoch[%04d], glob-step[%06d], loss=%.4f, acc=%.3f" % (time_str, epoch, g_step, train_loss, train_acc))
batch_x, batch_y = generate_batch_test(len(list_data_test))
test_loss, test_acc, _3 = test(batch_x, batch_y, test_summary_writer)
time_str = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
print("%s: [TEST] epoch[%04d], glob-step[%06d], loss=%.4f, acc=%.3f" % (time_str, epoch, g_step, test_loss, test_acc))
current_step = tf.train.global_step(sess, global_step)
saver.save(sess, checkpoint_prefix, global_step=current_step)
if epoch >= NUM_EPOCH:
print("TRAIN COMPLETED !!!")
break
'''''''''''''''''''''''''''''''''''''''''''''
PREDICTION TEST
'''''''''''''''''''''''''''''''''''''''''''''
batch_x, batch_y = generate_batch(BATCH_SIZE)
label_y = np.argmax(batch_y, axis=1)
pred_y = predict(batch_x)
pred_y = pred_y[0]
for a in range(len(label_y)):
ox = "X"
if label_y[a] == pred_y[a]:
ox = "O"
print("TEST[%03d] label_y=%02d, pred_y=%02d => %s" % (a, label_y[a], pred_y[a], ox))
print("PROGRAM END!!")