forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RLlib] Remove all default config objects and rllib/agents (ray-proje…
…ct#33242) Signed-off-by: Artur Niederfahrenhorst <[email protected]> Signed-off-by: elliottower <[email protected]>
- Loading branch information
1 parent
109198d
commit d41225a
Showing
79 changed files
with
108 additions
and
697 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from ray.rllib.algorithms.a2c.a2c import A2CConfig, A2C, A2C_DEFAULT_CONFIG | ||
from ray.rllib.algorithms.a2c.a2c import A2CConfig, A2C | ||
|
||
__all__ = ["A2CConfig", "A2C", "A2C_DEFAULT_CONFIG"] | ||
__all__ = ["A2CConfig", "A2C"] |
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,3 +1,3 @@ | ||
from ray.rllib.algorithms.a3c.a3c import A3CConfig, A3C, DEFAULT_CONFIG | ||
from ray.rllib.algorithms.a3c.a3c import A3CConfig, A3C | ||
|
||
__all__ = ["A3CConfig", "A3C", "DEFAULT_CONFIG"] | ||
__all__ = ["A3CConfig", "A3C"] |
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,11 +1,9 @@ | ||
from ray.rllib.algorithms.alpha_star.alpha_star import ( | ||
AlphaStar, | ||
AlphaStarConfig, | ||
DEFAULT_CONFIG, | ||
) | ||
|
||
__all__ = [ | ||
"AlphaStar", | ||
"AlphaStarConfig", | ||
"DEFAULT_CONFIG", | ||
] |
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,13 +1,11 @@ | ||
from ray.rllib.algorithms.alpha_zero.alpha_zero import ( | ||
AlphaZero, | ||
AlphaZeroConfig, | ||
DEFAULT_CONFIG, | ||
) | ||
from ray.rllib.algorithms.alpha_zero.alpha_zero_policy import AlphaZeroPolicy | ||
|
||
__all__ = [ | ||
"AlphaZero", | ||
"AlphaZeroConfig", | ||
"AlphaZeroPolicy", | ||
"DEFAULT_CONFIG", | ||
] |
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,11 +1,9 @@ | ||
from ray.rllib.algorithms.apex_ddpg.apex_ddpg import ( | ||
ApexDDPG, | ||
ApexDDPGConfig, | ||
APEX_DDPG_DEFAULT_CONFIG, | ||
) | ||
|
||
__all__ = [ | ||
"ApexDDPG", | ||
"ApexDDPGConfig", | ||
"APEX_DDPG_DEFAULT_CONFIG", | ||
] |
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,11 +1,9 @@ | ||
from ray.rllib.algorithms.apex_dqn.apex_dqn import ( | ||
ApexDQN, | ||
ApexDQNConfig, | ||
APEX_DEFAULT_CONFIG, | ||
) | ||
|
||
__all__ = [ | ||
"ApexDQN", | ||
"ApexDQNConfig", | ||
"APEX_DEFAULT_CONFIG", | ||
] |
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
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,6 @@ | ||
from ray.rllib.algorithms.bc.bc import BCConfig, BC, BC_DEFAULT_CONFIG | ||
from ray.rllib.algorithms.bc.bc import BCConfig, BC | ||
|
||
__all__ = [ | ||
"BCConfig", | ||
"BC", | ||
# Deprecated. | ||
"BC_DEFAULT_CONFIG", | ||
] |
Oops, something went wrong.