awjuliani / DeepRL-Agents

A set of Deep Reinforcement Learning Agents implemented in Tensorflow.
MIT License
2.23k stars 825 forks source link

A garbage code in Model-Network.ipynb #81

Open hccho2 opened 4 years ago

hccho2 commented 4 years ago

In Model-Network.ipynb

garbage code. Should be removed.

input_data = tf.placeholder(tf.float32, [None, 5])
with tf.variable_scope('rnnlm'):
    softmax_w = tf.get_variable("softmax_w", [mH, 50])
    softmax_b = tf.get_variable("softmax_b", [50])