We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6442ef commit cdf3253Copy full SHA for cdf3253
Ptr_Net_TSPTW/actor.py
@@ -206,7 +206,7 @@ def build_optim(self):
206
for i in tqdm(range(nb_epoch)): # epoch i
207
208
# Get feed_dict
209
- input_batch = training_set.train_batch(actor.batch_size, actor.max_length, actor.input_dimension)
+ input_batch = training_set.train_batch()
210
feed = {actor.input_: input_batch}
211
#print(' Input \n', input_batch)
212
@@ -225,4 +225,4 @@ def build_optim(self):
225
variables_names = [v.name for v in tf.global_variables() if 'Adam' not in v.name]
226
values = sess.run(variables_names)
227
for k, v in zip(variables_names, values):
228
- print("Variable: ", k, "Shape: ", v.shape)
+ print("Variable: ", k, "Shape: ", v.shape)
0 commit comments