forked from thu-ml/tianshou
-
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.
fix venv seed, add TOC in docs, and split buffer.py into several files (
thu-ml#303) Things changed in this PR: - various docs update, add TOC - split buffer into several files - fix venv action_space randomness
- Loading branch information
1 parent
bce025b
commit 09775bd
Showing
21 changed files
with
1,101 additions
and
877 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,106 @@ | ||
tianshou.policy | ||
=============== | ||
|
||
.. automodule:: tianshou.policy | ||
Base | ||
---- | ||
|
||
.. autoclass:: tianshou.policy.BasePolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.RandomPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Model-free | ||
---------- | ||
|
||
DQN Family | ||
~~~~~~~~~~ | ||
|
||
.. autoclass:: tianshou.policy.DQNPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.C51Policy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.QRDQNPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
On-policy | ||
~~~~~~~~~ | ||
|
||
.. autoclass:: tianshou.policy.PGPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.A2CPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.PPOPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Off-policy | ||
~~~~~~~~~~ | ||
|
||
.. autoclass:: tianshou.policy.DDPGPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.TD3Policy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.SACPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.DiscreteSACPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Imitation | ||
--------- | ||
|
||
.. autoclass:: tianshou.policy.ImitationPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: tianshou.policy.DiscreteBCQPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Model-based | ||
----------- | ||
|
||
.. autoclass:: tianshou.policy.PSRLPolicy | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Multi-agent | ||
----------- | ||
|
||
.. autoclass:: tianshou.policy.MultiAgentPolicyManager | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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.