-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add policy documentation links to policy_kwargs parameter (#266)
* Add policy documentation links to policy_kwargs parameter * Sort `__all__` --------- Co-authored-by: Antonin RAFFIN <[email protected]>
- Loading branch information
Showing
15 changed files
with
17 additions
and
15 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
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,4 +1,4 @@ | ||
from sb3_contrib.ppo_mask.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from sb3_contrib.ppo_mask.ppo_mask import MaskablePPO | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "MaskablePPO"] | ||
__all__ = ["CnnPolicy", "MaskablePPO", "MlpPolicy", "MultiInputPolicy"] |
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,4 +1,4 @@ | ||
from sb3_contrib.qrdqn.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from sb3_contrib.qrdqn.qrdqn import QRDQN | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "QRDQN"] | ||
__all__ = ["QRDQN", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
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,4 +1,4 @@ | ||
from sb3_contrib.tqc.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from sb3_contrib.tqc.tqc import TQC | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "TQC"] | ||
__all__ = ["TQC", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
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,4 +1,4 @@ | ||
from sb3_contrib.trpo.policies import CnnPolicy, MlpPolicy, MultiInputPolicy | ||
from sb3_contrib.trpo.trpo import TRPO | ||
|
||
__all__ = ["CnnPolicy", "MlpPolicy", "MultiInputPolicy", "TRPO"] | ||
__all__ = ["TRPO", "CnnPolicy", "MlpPolicy", "MultiInputPolicy"] |
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