-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathagent.py
339 lines (237 loc) · 15.7 KB
/
agent.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
# -*- coding: utf-8 -*-
import tensorflow as tf
import matplotlib.pyplot as plt
def variable_summaries(name, var, with_max_min=False):
""" Tensor summaries for TensorBoard visualization """
with tf.name_scope(name):
mean = tf.reduce_mean(var)
tf.summary.scalar('mean', mean)
with tf.name_scope('stddev'):
stddev = tf.sqrt(tf.reduce_mean(tf.square(var - mean)))
tf.summary.scalar('stddev', stddev)
if with_max_min == True:
tf.summary.scalar('max', tf.reduce_max(var))
tf.summary.scalar('min', tf.reduce_min(var))
class Seq2seqModel:
"""
Implementation of a sequence-to-sequence model based on dynamic multi-cell RNNs
Attributes:
batch_size(int) -- Batch of random service chains
action_size(int) -- Number of hosts
embeddings(int) -- Embedding size
length(int) -- Maximum sequence size
hidden_size(int) -- LSTM hidden size
num_layers(int) -- No stacked LSTM cells
"""
def __init__(self, config, input_, input_len_, mask):
self.action_size = config.num_cpus
self.batch_size = config.batch_size
self.embeddings = config.embedding_size
self.state_size = config.num_vnfd
self.length = config.max_length
vocab_size = config.num_vnfd + 1 #VNF的类型
self.hidden_size = config.hidden_dim
self.num_layers = config.num_layers
self.positions = []
self.outputs = []
self.input_ = input_ #SFC的需求矩阵
self.input_len_ = input_len_
self.mask = mask
self.initialization_stddev = 0.1
self.attention_plot = []
with tf.variable_scope("actor"):
# Define encoder block
with tf.variable_scope("actor_encoder"):
# Variables initializer
initializer = tf.contrib.layers.xavier_initializer()#初始化权重矩阵 https://blog.csdn.net/yinruiyang94/article/details/78354257/
# Embeddings
embeddings = tf.Variable(tf.random_uniform([vocab_size, self.embeddings], -1.0, 1.0),
dtype=tf.float32)
embedded_input = tf.nn.embedding_lookup(embeddings, input_) #在embeddings表中按照input_查询向量,组成input_行的矩阵
# Generate multiple LSTM cell 说明过程: https://zhuanlan.zhihu.com/p/99421590,将num_layers层叠加的LSTM。每层的LSTM包括hidden_size个单元
enc_cells = tf.nn.rnn_cell.MultiRNNCell( #将底层的LSTM的return_sequences=True, 可实现与上层的LSTM叠加,只是定义,还没有增加输入与输出
[tf.nn.rnn_cell.LSTMCell(self.hidden_size, state_is_tuple=True) for _ in range(self.num_layers)],
state_is_tuple=True)
c_initial_states = []#LSTM的状态
h_initial_states = []#LSTM的输出值
# Initial state (tuple) is trainable but same for all batch
for i in range(self.num_layers):
first_state = tf.get_variable("var{}".format(i), [1, self.hidden_size], initializer=initializer) #创建新的tensorflow变量,常见的initializer有:常量初始化器tf.constant_initializer
# first_state = tf.Print(first_state, ["first_state", first_state], summarize=10)
c_initial_state = tf.tile(first_state, [self.batch_size, 1])#用于在同一维度上的复制 在行上复制batch_size次,在列上复制1次
h_initial_state = tf.tile(first_state, [self.batch_size, 1])#https://blog.csdn.net/tsyccnh/article/details/82459859
c_initial_states.append(c_initial_state)
h_initial_states.append(h_initial_state)
# LSTM stack
rnn_tuple_state = tuple(
[tf.nn.rnn_cell.LSTMStateTuple(c_initial_states[idx], h_initial_states[idx])
for idx in range(self.num_layers)])
# LSTM output
self.encoder_outputs, self.encoder_final_state = tf.nn.dynamic_rnn(cell=enc_cells, inputs=embedded_input, initial_state=rnn_tuple_state, dtype=tf.float32)
#enc_cells 整个编码的LSTM embedded_input 输入的训练或测试数据 一般是3维
#返回值:元组(outputs, states)outputs:outputs很容易理解,就是每个cell会有一个输出 States:states表示最终的状态,
#enc_outputs, enc_final_state = tf.nn.dynamic_rnn(cell=enc_cells, inputs=embedded_input, initial_state=rnn_tuple_state,
# sequence_length=input_len_, dtype=tf.float32)
# Define decoder block
with tf.variable_scope("actor_decoder"):
# LSTM stack
decoder_cell = tf.nn.rnn_cell.MultiRNNCell(
[tf.nn.rnn_cell.LSTMCell(self.hidden_size, state_is_tuple=True) for _ in range(self.num_layers)],
state_is_tuple=True)
first_process_block_input = tf.tile(tf.Variable(tf.random_normal([1, self.hidden_size]),
name='first_process_block_input'), [self.batch_size, 1])
# Define attention weights
with tf.variable_scope("actor_attention_weights", reuse=True):
W_ref = tf.Variable(tf.random_normal([self.hidden_size, self.hidden_size], stddev=self.initialization_stddev), name='W_ref')
W_q = tf.Variable(tf.random_normal([self.hidden_size, self.hidden_size], stddev=self.initialization_stddev), name='W_q')
v = tf.Variable(tf.random_normal([self.hidden_size], stddev=self.initialization_stddev), name='v')
# Processing chain
decoder_state = self.encoder_final_state
decoder_input = tf.unstack(self.encoder_outputs, num=None, axis=1, name='unstack') #first_process_block_input unstack就是要将一个张量降低为低一个维度的张量数组 https://blog.csdn.net/qq_31150463/article/details/84193975#:~:text=tf.unstack%20%28value%2C%20num%3DNone%2C,axis%3D0%2C%20name%3D%E2%80%99unstack%E2%80%99%29%20%E4%BB%A5%E6%8C%87%E5%AE%9A%E7%9A%84%E8%BD%B4axis%EF%BC%8C%E5%B0%86%E4%B8%80%E4%B8%AA%E7%BB%B4%E5%BA%A6%E4%B8%BAR%E7%9A%84%E5%BC%A0%E9%87%8F%E6%95%B0%E7%BB%84%E8%BD%AC%E5%8F%98%E6%88%90%E4%B8%80%E4%B8%AA%E7%BB%B4%E5%BA%A6%E4%B8%BAR-1%E7%9A%84%E5%BC%A0%E9%87%8F%E3%80%82
decoder_outputs = []
decoder_attLogits = []
for t in range(self.length):
decoder_output, decoder_state = decoder_cell(inputs=decoder_input[t], state=decoder_state)
#dec_output = tf.layers.dense(dec_output, self.embedding, tf.nn.relu)
decoder_outputs.append(decoder_output)
#decoder_input = decoder_output
#_, attnLogits, context = self.attention(W_ref, W_q, v, attnInputs=enc_outputs, query=dec_output, mask=self.mask)
#dec_attLogits.append(attnLogits)
#dec_input = context
dec_outputs = tf.stack(decoder_outputs, axis=1)
#self.attention_plot = tf.stack(dec_attLogits, axis=1)
self.decoder_logits = tf.layers.dense(dec_outputs, self.action_size) # [Batch, seq_length, action_size]
# Multinomial distribution
self.decoder_softmax = tf.nn.softmax(self.decoder_logits)
prob = tf.contrib.distributions.Categorical(probs=self.decoder_softmax) #一组类的对数概率参数化。
# Sample from distribution
self.decoder_exploration = prob.sample(1)
self.decoder_exploration = tf.cast(self.decoder_exploration, tf.int32)#类型转换
# Decoder prediction
self.decoder_prediction = tf.argmax(self.decoder_logits, 2)#在第3维上找出最大元素的索引号 https://blog.csdn.net/u012300744/article/details/81240580
self.decoder_prediction = tf.expand_dims(self.decoder_prediction, 0)
# Sampling
temperature = 15
self.decoder_softmax_temp = tf.nn.softmax(self.decoder_logits / temperature)
prob = tf.contrib.distributions.Categorical(probs=self.decoder_softmax)
self.samples = 16
self.decoder_sampling = prob.sample(self.samples)
def attention(self, W_ref, W_q, v, attnInputs, query, mask=None, maskPenalty = 10^6):
"""
Attention mechanism in Vinyals (2015)
attnInputs are the states over which to attend over
"""
with tf.variable_scope("RNN_Attention"):
u_i0s = tf.einsum('kl,itl->itk', W_ref, attnInputs)#可以用简单的方式表示许多常见的多维线性代数数组运算。https://blog.csdn.net/weixin_42014622/article/details/104829672
u_i1s = tf.expand_dims(tf.einsum('kl,il->ik', W_q, query), 1)
unscaledAttnLogits = tf.einsum('k,itk->it', v, tf.tanh(u_i0s + u_i1s))
#unscaledAttnLogits = tf.Print(unscaledAttnLogits, ["unscaledAttnLogits", unscaledAttnLogits, tf.shape(unscaledAttnLogits)], summarize=10)
if mask is not None:
maskedUnscaledAttnLogits = unscaledAttnLogits - tf.multiply(mask, maskPenalty)
#maskedUnscaledAttnLogits = tf.Print(maskedUnscaledAttnLogits, ["maskedUnscaledAttnLogits", maskedUnscaledAttnLogits, tf.shape(maskedUnscaledAttnLogits)], summarize=10)
attnLogits = tf.nn.softmax(maskedUnscaledAttnLogits)
#attnLogits = tf.Print(attnLogits,["attnLogits", attnLogits, tf.shape(attnLogits)], summarize=10)
context = tf.einsum('bi,bic->bc', attnLogits, attnInputs)
return unscaledAttnLogits, attnLogits, context
def plot_attention(self, attention):
""" Plot the attention """
fig = plt.figure(figsize=(10, 10))
ax = fig.add_subplot(1, 1, 1)
ax.matshow(attention, cmap='viridis')
fontdict = {'fontsize': 14}
ax.set_xticklabels(['sentence'], fontdict=fontdict, rotation=90)
ax.set_yticklabels(['predicted'], fontdict=fontdict)
plt.show()
class ValueEstimator():
"""
Value Function approximator
Attributes:
batch_size(int) -- Batch of random service chains
embeddings(int) -- Embedding size
length(int) -- Maximum sequence size
hidden_size(int) -- LSTM hidden size
"""
def __init__(self, config, input_):
with tf.variable_scope("value_estimator"):
self.embeddings = config.embedding_size
self.length = config.max_length
vocab_size = config.num_vnfd + 1
#self.state = tf.placeholder(tf.int32, [], "state")
self.target = tf.placeholder(tf.float32, [config.batch_size], name="target")
# Embeddings
embeddings = tf.Variable(tf.random_uniform([vocab_size, self.embeddings], -1.0, 1.0),
dtype=tf.float32)
embedded_input = tf.nn.embedding_lookup(embeddings, input_)
# Encoder
encoder_cell = tf.contrib.rnn.LSTMCell(config.hidden_dim)
_, encoder_final_state = tf.nn.dynamic_rnn(
encoder_cell, embedded_input,dtype=tf.float32)
# MLP output layer
output = tf.layers.dense(encoder_final_state.h, 1)
self.value_estimate = tf.squeeze(output)
target = self.target
self.loss = tf.squared_difference(self.value_estimate, target)
#variable_summaries('valueEstimator_loss', self.loss, with_max_min=False)
self.optimizer = tf.train.AdamOptimizer(learning_rate=0.1)
self.train_op = self.optimizer.minimize(
self.loss, global_step=tf.contrib.framework.get_global_step())
class Agent:
"""
Agent composed by a sequence-to-sequence model and a baseline estimator
"""
def __init__(self, config):
# Training config (agent)
self.learning_rate = config.learning_rate
#self.global_step = tf.Variable(0, trainable=False, name="global_step") # global step
#self.lr_start = config.lr1_start # initial learning rate
#self.lr_decay_rate = config.lr1_decay_rate # learning rate decay rate
#self.lr_decay_step = config.lr1_decay_step # learning rate decay step
self.action_size = config.num_cpus
self.batch_size = config.batch_size
self.embeddings = config.embedding_size
self.state_size = config.num_vnfd
self.length = config.max_length
self.lambda_occupancy = 1000
self.lambda_bandwidth = 10
self.lambda_latency = 10
# Tensor block holding the input sequences [Batch Size, Sequence Length, Features]
self.input_ = tf.placeholder(tf.int32, [self.batch_size, self.length], name="input")
self.input_len_ = tf.placeholder(tf.int32, [self.batch_size], name="input_len")
self.mask = tf.placeholder(tf.int32, [self.batch_size, self.length], name="mask")
self._build_model(config)
self._build_ValueEstimator(config)
self._build_optimization()
self.merged = tf.summary.merge_all()
def _build_model(self, config):
with tf.variable_scope('actor'):
self.actor = Seq2seqModel(config, self.input_, self.input_len_, self.mask)
def _build_ValueEstimator(self, config):
with tf.variable_scope('value_estimator'):
self.valueEstimator = ValueEstimator(config, self.input_)
def _build_optimization(self):
with tf.name_scope('reinforce_learning'):
self.placement_holder = tf.placeholder(tf.float32, [self.batch_size, self.length], name="placement_holder")
self.baseline_holder = tf.placeholder(tf.float32, [self.batch_size], name="baseline_holder")
self.lagrangian_holder = tf.placeholder(tf.float32, [self.batch_size], name="lagrangian_holder")
# Optimizer learning rate
#self.opt = tf.train.exponential_decay(self.lr1_start, self.global_step, self.lr1_decay_step, self.lr1_decay_rate, staircase=False, name="learning_rate1")
opt = tf.train.AdamOptimizer(learning_rate=self.learning_rate, beta1=0.9, beta2=0.99, epsilon=0.0000001)
# Multinomial distribution
probs = tf.contrib.distributions.Categorical(probs=self.actor.decoder_softmax)
log_softmax = probs.log_prob(self.placement_holder) # [Batch, seq_length]
# log_softmax = tf.Print(log_softmax, ["log_softmax", log_softmax, tf.shape(log_softmax)])
log_softmax_mean = tf.reduce_mean(log_softmax,1) # [Batch]
# log_softmax_mean = tf.Print(log_softmax_mean, ["log_softmax_mean",log_softmax_mean, tf.shape(log_softmax_mean)])
variable_summaries('log_softmax_mean', log_softmax_mean, with_max_min=True)
self.advantage = self.lagrangian_holder - self.baseline_holder
variable_summaries('adventage', self.advantage, with_max_min=False)
# Compute Loss
self.loss_rl = tf.reduce_mean(self.advantage * log_softmax_mean, 0) # Scalar
tf.summary.scalar('loss', self.loss_rl)
# Minimize step
gvs = opt.compute_gradients(self.loss_rl)
# Clipping
capped_gvs = [(tf.clip_by_norm(grad, 1.), var) for grad, var in gvs if grad is not None] # L2 clip
self.train_step = opt.apply_gradients(capped_gvs)
if __name__ == "__main__":
pass