Skip to content

Commit

Permalink
remove-test-warnings (#19)
Browse files Browse the repository at this point in the history
* Update train.py

* Update basic_test.py (#20)

* Update ddpg_test.py (#21)

* Update noisy_network_test.py (#22)

* Update noisy_network_test.py

* Update noisy_network_test.py

* Update noisy_network_test.py

* Alexanderimanicowenrivers patch 1 (#23)

* Update noisy_network_test.py

* Update noisy_network_test.py

* Update ppo_test.py

* Update simple_test.py

* Alexanderimanicowenrivers patch 1 (#24)

* Update noisy_network_test.py

* Update noisy_network_test.py

* Update prioritized_test.py
  • Loading branch information
Alexander Cowen-Rivers authored and bryanlimy committed Aug 11, 2019
1 parent ee91562 commit a02a292
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/memory/prioritized_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import numpy as np
import random
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)


class PrioritizedMemoryTest(tf.test.TestCase):
Expand Down
1 change: 1 addition & 0 deletions tests/memory/simple_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import numpy as np
import random
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)


class SimpleMemoryTest(tf.test.TestCase):
Expand Down
1 change: 1 addition & 0 deletions tests/models/basic_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import numpy as np
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)

inp_dim = 80

Expand Down
1 change: 1 addition & 0 deletions tests/models/ddpg_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import numpy as np
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)

inp_dim = 80

Expand Down
1 change: 1 addition & 0 deletions tests/models/noisy_network_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import numpy as np
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)

inp_dim = 80

Expand Down
1 change: 1 addition & 0 deletions tests/models/ppo_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import numpy as np
import tensorflow as tf
tf.logging.set_verbosity(tf.logging.ERROR)

inp_dim = 80

Expand Down
1 change: 1 addition & 0 deletions train.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import numpy as np
import tensorflow as tf
import tensorflow.keras.backend as K
tf.logging.set_verbosity(tf.logging.ERROR)

from rl.utils import flags
from rl.utils.utils import ModeKeys
Expand Down

0 comments on commit a02a292

Please sign in to comment.