Skip to content

Commit

Permalink
fixed unit tests...maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
beardyFace committed Oct 18, 2023
1 parent 631660a commit f531095
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@

def test_create_agents():
args = {
"lr": 0.001,
"actor_lr": 0.001,
"critic_lr": 0.001,
"gamma": 0.99,
"tau": 0.01,
}

agent = create_DQN(10, 5, DQNConfig(**args))
Expand Down Expand Up @@ -40,11 +35,6 @@ def test_create_agents():
def test_create_network():
factory = NetworkFactory()
args = {
"lr": 0.001,
"actor_lr": 0.001,
"critic_lr": 0.001,
"gamma": 0.99,
"tau": 0.01,
}

agent = factory.create_network(10, 5, DQNConfig(**args))
Expand Down

0 comments on commit f531095

Please sign in to comment.