-
Notifications
You must be signed in to change notification settings - Fork 49
/
rlmodel.py
448 lines (342 loc) · 16.7 KB
/
rlmodel.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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
import tensorflow as tf
import numpy as np
import random
import tensorflow.contrib.layers as layers
from tqdm import tqdm
import time
import cnnmodel
import random
import tqdm
class environment():
def __init__(self,sentence_len):
self.sentence_len = sentence_len
def reset(self,e1,e2,batch_sentence_ebd,batch_reward):
self.id_e1 = e1
self.id_e2 = e2
self.batch_reward = batch_reward
self.batch_len = len(batch_sentence_ebd)
self.sentence_ebd = batch_sentence_ebd
self.current_step = 0
self.num_selected = 0
self.current_step = 0
self.list_selected = []
self.vector_current = self.sentence_ebd[self.current_step]
self.vector_mean = np.array([0.0 for x in range(self.sentence_len)],dtype=np.float32)
self.vector_sum = np.array([0.0 for x in range(self.sentence_len)],dtype=np.float32)
current_state = [self.vector_current,self.vector_mean,self.id_e1,self.id_e2]
return current_state
def step(self,action):
if action == 1:
self.num_selected +=1
self.list_selected.append(self.current_step)
self.vector_sum =self.vector_sum + action * self.vector_current
if self.num_selected == 0:
self.vector_mean = np.array([0.0 for x in range(self.sentence_len)],dtype=np.float32)
else:
self.vector_mean = self.vector_sum / self.num_selected
self.current_step +=1
if (self.current_step < self.batch_len):
self.vector_current = self.sentence_ebd[self.current_step]
current_state = [self.vector_current, self.vector_mean, self.id_e1, self.id_e2]
return current_state
def reward(self):
assert (len(self.list_selected) == self.num_selected)
reward = [self.batch_reward[x] for x in self.list_selected]
reward = np.array(reward)
reward = np.mean(reward)
return reward
def get_action(prob):
tmp = prob[0]
result = np.random.rand()
if result>0 and result< tmp:
return 1
elif result >=tmp and result<1:
return 0
def decide_action(prob):
tmp = prob[0]
if tmp>=0.5:
return 1
elif tmp < 0.5:
return 0
class agent():
def __init__(self, lr,entity_ebd,s_size):
#get action
entity_embedding = tf.get_variable(name = 'entity_embedding',initializer=entity_ebd,trainable=False)
self.state_in = tf.placeholder(shape=[None, s_size], dtype=tf.float32)
self.entity1 = tf.placeholder(dtype=tf.int32, shape=[None], name='entity1')
self.entity2 = tf.placeholder(dtype=tf.int32, shape=[None], name='entity2')
self.entity1_ebd = tf.nn.embedding_lookup(entity_embedding, self.entity1)
self.entity2_ebd = tf.nn.embedding_lookup(entity_embedding, self.entity2)
self.input = tf.concat(axis=1,values = [self.state_in,self.entity1_ebd,self.entity2_ebd])
self.prob = tf.reshape(layers.fully_connected(self.input,1,tf.nn.sigmoid),[-1])
#compute loss
self.reward_holder = tf.placeholder(shape=[None], dtype=tf.float32)
self.action_holder = tf.placeholder(shape=[None], dtype=tf.float32)
#the probability of choosing 0 or 1
self.pi = self.action_holder * self.prob + (1 - self.action_holder) * (1 - self.prob)
#loss
self.loss = -tf.reduce_sum(tf.log(self.pi) * self.reward_holder)
# minimize loss
optimizer = tf.train.AdamOptimizer(lr)
self.train_op = optimizer.minimize(self.loss)
self.tvars = tf.trainable_variables()
#manual update parameters
self.tvars_holders = []
for idx, var in enumerate(self.tvars):
placeholder = tf.placeholder(tf.float32, name=str(idx) + '_holder')
self.tvars_holders.append(placeholder)
self.update_tvar_holder = []
for idx, var in enumerate(self.tvars):
update_tvar = tf.assign(var, self.tvars_holders[idx])
self.update_tvar_holder.append(update_tvar)
#compute gradient
self.gradients = tf.gradients(self.loss, self.tvars)
#update parameters using gradient
self.gradient_holders = []
for idx, var in enumerate(self.tvars):
placeholder = tf.placeholder(tf.float32, name=str(idx) + '_holder')
self.gradient_holders.append(placeholder)
self.update_batch = optimizer.apply_gradients(zip(self.gradient_holders, self.tvars))
def train():
train_entitypair = np.load('./data/train_entitypair.npy')
all_sentence_ebd = np.load('./data/all_sentence_ebd.npy')
all_reward= np.load('./data/all_reward.npy')
average_reward = np.load('data/average_reward.npy')
entity_ebd = np.load('origin_data/entity_ebd.npy')
g_rl = tf.Graph()
sess2 = tf.Session(graph=g_rl)
env = environment(230)
with g_rl.as_default():
with sess2.as_default():
myAgent = agent(0.03,entity_ebd,460)
updaterate = 1
num_epoch = 25
sampletimes = 3
best_reward = -100000
init = tf.global_variables_initializer()
sess2.run(init)
saver = tf.train.Saver()
#saver.restore(sess2, save_path='rlmodel/rl.ckpt')
tvars_best = sess2.run(myAgent.tvars)
for index, var in enumerate(tvars_best):
tvars_best[index] = var * 0
tvars_old = sess2.run(myAgent.tvars)
gradBuffer = sess2.run(myAgent.tvars)
for index, grad in enumerate(gradBuffer):
gradBuffer[index] = grad * 0
g_rl.finalize()
for epoch in range(num_epoch):
all_list = list(range(len(all_sentence_ebd)))
total_reward = []
# shuffle bags
random.shuffle(all_list)
for batch in tqdm.tqdm(all_list):
#for batch in tqdm.tqdm(range(10000)):
batch_en1 = train_entitypair[batch][0]
batch_en2 = train_entitypair[batch][1]
batch_sentence_ebd = all_sentence_ebd[batch]
batch_reward = all_reward[batch]
batch_len = len(batch_sentence_ebd)
list_list_state = []
list_list_action = []
list_list_reward = []
avg_reward = 0
# add sample times
for j in range(sampletimes):
#reset environment
state = env.reset( batch_en1, batch_en2,batch_sentence_ebd,batch_reward)
list_action = []
list_state = []
old_prob = []
#get action
#start = time.time()
for i in range(batch_len):
state_in = np.append(state[0],state[1])
feed_dict = {}
feed_dict[myAgent.entity1] = [state[2]]
feed_dict[myAgent.entity2] = [state[3]]
feed_dict[myAgent.state_in] = [state_in]
prob = sess2.run(myAgent.prob,feed_dict = feed_dict)
old_prob.append(prob[0])
action = get_action(prob)
#add produce data for training cnn model
list_action.append(action)
list_state.append(state)
state = env.step(action)
#end = time.time()
#print ('get action:',end - start)
if env.num_selected == 0:
tmp_reward = average_reward
else:
tmp_reward = env.reward()
avg_reward += tmp_reward
list_list_state.append(list_state)
list_list_action.append(list_action)
list_list_reward.append(tmp_reward)
avg_reward = avg_reward / sampletimes
# add sample times
for j in range(sampletimes):
list_state = list_list_state[j]
list_action = list_list_action[j]
reward = list_list_reward[j]
# compute gradient
# start = time.time()
list_reward = [reward - avg_reward for x in range(batch_len)]
list_state_in = [np.append(state[0],state[1]) for state in list_state]
list_entity1 = [state[2] for state in list_state]
list_entity2 = [state[3] for state in list_state ]
feed_dict = {}
feed_dict[myAgent.state_in] = list_state_in
feed_dict[myAgent.entity1] = list_entity1
feed_dict[myAgent.entity2] = list_entity2
feed_dict[myAgent.reward_holder] = list_reward
feed_dict[myAgent.action_holder] = list_action
'''
loss =sess2.run(myAgent.loss, feed_dict=feed_dict)
if loss == float("-inf"):
probs,pis = sess2.run([myAgent.prob,myAgent.pi], feed_dict=feed_dict)
print(' ')
print ('batch:',batch)
print (old_prob)
print (list_action)
print(probs)
print (pis)
print('error!')
return 0
'''
grads = sess2.run(myAgent.gradients, feed_dict=feed_dict)
for index, grad in enumerate(grads):
gradBuffer[index] += grad
#end = time.time()
#print('get loss and update:', end - start)
'''
print (len(list_state),len(list_action),len(list_reward),len(list_entity1),len(list_entity2))
print (list_action)
print (list_reward)
print (list_entity1)
print (list_entity2)
break
'''
#decide action and compute reward
state = env.reset(batch_en1, batch_en2, batch_sentence_ebd, batch_reward)
old_prob = []
for i in range(batch_len):
state_in = np.append(state[0], state[1])
feed_dict = {}
feed_dict[myAgent.entity1] = [state[2]]
feed_dict[myAgent.entity2] = [state[3]]
feed_dict[myAgent.state_in] = [state_in]
prob = sess2.run(myAgent.prob, feed_dict=feed_dict)
old_prob.append(prob[0])
action = decide_action(prob)
state = env.step(action)
chosen_reward = [batch_reward[x] for x in env.list_selected]
total_reward += chosen_reward
#apply gradient
feed_dict = dictionary = dict(zip(myAgent.gradient_holders, gradBuffer))
sess2.run(myAgent.update_batch, feed_dict=feed_dict)
for index, grad in enumerate(gradBuffer):
gradBuffer[index] = grad * 0
#get tvars_new
tvars_new = sess2.run(myAgent.tvars)
# update old variables of the target network
tvars_update = sess2.run(myAgent.tvars)
for index, var in enumerate(tvars_update):
tvars_update[index] = updaterate * tvars_new[index] + (1-updaterate) * tvars_old[index]
feed_dict = dictionary = dict(zip(myAgent.tvars_holders, tvars_update))
sess2.run(myAgent.update_tvar_holder, feed_dict)
tvars_old = sess2.run(myAgent.tvars)
#break
#find the best parameters
chosen_size = len(total_reward)
total_reward = np.mean(np.array(total_reward))
if (total_reward > best_reward):
best_reward = total_reward
tvars_best = tvars_old
print ('chosen sentence size:',chosen_size)
print ('total_reward:',total_reward)
print ('best_reward',best_reward)
#set parameters = best_tvars
feed_dict = dictionary = dict(zip(myAgent.tvars_holders, tvars_best))
sess2.run(myAgent.update_tvar_holder, feed_dict)
#save model
saver.save(sess2, save_path='rlmodel/origin_rl_model.ckpt')
def select(save_path):
train_word = np.load('./data/train_word.npy')
train_pos1 = np.load('./data/train_pos1.npy')
train_pos2 = np.load('./data/train_pos2.npy')
train_entitypair = np.load('./data/train_entitypair.npy')
y_train = np.load('data/train_y.npy')
all_sentence_ebd = np.load('./data/all_sentence_ebd.npy')
all_reward = np.load('./data/all_reward.npy')
entity_ebd = np.load('origin_data/entity_ebd.npy')
selected_word = []
selected_pos1 = []
selected_pos2 = []
selected_y = []
g_rl = tf.Graph()
sess2 = tf.Session(graph=g_rl)
env = environment(230)
with g_rl.as_default():
with sess2.as_default():
myAgent = agent(0.02, entity_ebd, 460)
init = tf.global_variables_initializer()
sess2.run(init)
saver = tf.train.Saver()
saver.restore(sess2, save_path=save_path)
g_rl.finalize()
for epoch in range(1):
total_reward = []
num_chosen = 0
all_list = list(range(len(all_sentence_ebd)))
for batch in tqdm.tqdm(all_list):
batch_en1 = train_entitypair[batch][0]
batch_en2 = train_entitypair[batch][1]
batch_sentence_ebd = all_sentence_ebd[batch]
batch_reward = all_reward[batch]
batch_len = len(batch_sentence_ebd)
batch_word = train_word[batch]
batch_pos1 = train_pos1[batch]
batch_pos2 = train_pos2[batch]
batch_y = [y_train[batch] for x in range(len(batch_word))]
# reset environment
state = env.reset(batch_en1, batch_en2, batch_sentence_ebd, batch_reward)
old_prob = []
# get action
# start = time.time()
for i in range(batch_len):
state_in = np.append(state[0], state[1])
feed_dict = {}
feed_dict[myAgent.entity1] = [state[2]]
feed_dict[myAgent.entity2] = [state[3]]
feed_dict[myAgent.state_in] = [state_in]
prob = sess2.run(myAgent.prob, feed_dict=feed_dict)
old_prob.append(prob[0])
action = decide_action(prob)
# produce data for training cnn model
state = env.step(action)
if action == 1:
num_chosen+=1
#print (old_prob)
chosen_reward = [batch_reward[x] for x in env.list_selected]
total_reward += chosen_reward
selected_word += [batch_word[x] for x in env.list_selected]
selected_pos1 += [batch_pos1[x] for x in env.list_selected]
selected_pos2 += [batch_pos2[x] for x in env.list_selected]
selected_y += [batch_y[x] for x in env.list_selected]
print(num_chosen)
selected_word = np.array(selected_word)
selected_pos1 = np.array(selected_pos1)
selected_pos2 = np.array(selected_pos2)
selected_y = np.array(selected_y)
np.save('cnndata/selected_word.npy',selected_word)
np.save('cnndata/selected_pos1.npy', selected_pos1)
np.save('cnndata/selected_pos2.npy', selected_pos2)
np.save('cnndata/selected_y.npy', selected_y)
if __name__ =='__main__':
print ('train rlmodel')
train()
print('select training data')
select(save_path = 'rlmodel/origin_rl_model.ckpt')
print ('use the selected data to train cnn model')
cnnmodel.train('cnndata/selected_word.npy', 'cnndata/selected_pos1.npy', 'cnndata/selected_pos2.npy','cnndata/selected_y.npy','model/selected_cnn_model.ckpt')