ReinforcementZeroToAll icon indicating copy to clipboard operation
ReinforcementZeroToAll copied to clipboard

Results 5 ReinforcementZeroToAll issues
Sort by recently updated
recently updated
newest added

10_1_Actor_Critic.ipynb 에서 ``` policy_gain = tf.reduce_sum(policy_gain, name="policy_gain") ``` 이렇게 되어 있는데, 아래와 같이 바뀌어야 될 것 같습니다. ``` policy_gain = tf.reduce_mean(policy_gain, name="policy_gain") ```

``` agent = Agent(new_HW + [repeat], output_dim=action_dim, logdir='logdir/train', checkpoint_dir="checkpoints") init = tf.global_variables_initializer() sess.run(init) ``` Agent를 선언하면서, model을 restore하고 있습니다. 그런데, 그 아래에서 initialization이 이루어지고 있습니다. 순서가 바뀌어야 합니다. ``` init...

08_4_softmax_pg_pong.py 에 다음과 같은 부분이 있습니다. ``` X = tf.placeholder(tf.float32, [None, input_size], name="input_x") x_image = tf.reshape(X, [-1, 80, 80, 4]) ``` 여기서 placeholder에 넘어오는 array는 (80x80)이미지를 4개 모아 (4,6400)으로 만든...

Added two evolution strategy implementations