-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed couple of errors and added new tests (#380)
* minor error fixes * Fixed Evaluate error and Action/Obs shape errors * code climate fix * Modularised tests and added few new ones
- Loading branch information
1 parent
a2c8c7e
commit 25eb018
Showing
20 changed files
with
377 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from tests.test_agents.test_deep.test_a2c import test_a2c, test_a2c_cnn | ||
from tests.test_agents.test_deep.test_ddpg import test_ddpg | ||
from tests.test_agents.test_deep.test_a2c import TestA2C | ||
from tests.test_agents.test_deep.test_ddpg import TestDDPG | ||
from tests.test_agents.test_deep.test_dqn import TestDQN | ||
from tests.test_agents.test_deep.test_dqn_cnn import TestDQNCNN | ||
from tests.test_agents.test_deep.test_ppo1 import test_ppo1, test_ppo1_cnn | ||
from tests.test_agents.test_deep.test_sac import test_sac | ||
from tests.test_agents.test_deep.test_td3 import test_td3 | ||
from tests.test_agents.test_deep.test_vpg import test_vpg, test_vpg_cnn | ||
from tests.test_agents.test_deep.test_ppo1 import TestPPO | ||
from tests.test_agents.test_deep.test_sac import TestSAC | ||
from tests.test_agents.test_deep.test_td3 import TestTD3 | ||
from tests.test_agents.test_deep.test_vpg import TestVPG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.