Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
songrotek committed Sep 12, 2016
1 parent bb48ae0 commit 18825ee
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 0 additions & 2 deletions actor_network.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


import tensorflow as tf
import numpy as np
import math
Expand Down
2 changes: 2 additions & 0 deletions critic_network.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

import tensorflow as tf
import numpy as np
import math


LAYER1_SIZE = 400
LAYER2_SIZE = 300
Expand Down
2 changes: 2 additions & 0 deletions critic_network_bn.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from tensorflow.contrib.layers.python.layers import batch_norm as batch_norm
import tensorflow as tf
import numpy as np
import math


LAYER1_SIZE = 400
LAYER2_SIZE = 300
Expand Down
Binary file removed filter_env.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion gym_ddpg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import gc
gc.enable()

ENV_NAME = 'Humanoid-v1'
ENV_NAME = 'InvertedPendulum-v1'
EPISODES = 100000
TEST = 10

Expand Down

0 comments on commit 18825ee

Please sign in to comment.