forked from pybrain/pybrain
-
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.
API documentation for some of the key RL classes.
- Loading branch information
Showing
28 changed files
with
281 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
:mod:`actionvalues` -- RL Components: ActionValues | ||
================================================ | ||
|
||
.. automodule:: pybrain.rl.learners.valuebased.interface | ||
|
||
.. autoclass:: ActionValueInterface | ||
:members: | ||
|
||
.. autoclass:: ActionValueTable | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: ActionValueNetwork | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
:mod:`agents` -- RL Components: Agents | ||
================================================ | ||
|
||
.. automodule:: pybrain.rl.agents.agent | ||
|
||
.. autoclass:: Agent | ||
:members: | ||
|
||
.. automodule:: pybrain.rl.agents.logging | ||
|
||
.. autoclass:: LoggingAgent | ||
:members: | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.agents | ||
|
||
.. autoclass:: LearningAgent | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: OptimizationAgent | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
:mod:`experiments` -- RL Components: Experiments | ||
================================================ | ||
|
||
.. automodule:: pybrain.rl.experiments | ||
|
||
.. autoclass:: Experiment | ||
:members: | ||
|
||
.. autoclass:: EpisodicExperiment | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: ContinuousExperiment | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
:mod:`explorers` -- RL Components: Explorers | ||
================================================ | ||
|
||
.. automodule:: pybrain.rl.explorers.explorer | ||
|
||
.. autoclass:: Explorer | ||
:members: | ||
|
||
Continuous Explorers | ||
-------------------- | ||
|
||
.. automodule:: pybrain.rl.explorers.continuous | ||
|
||
.. autoclass:: NormalExplorer | ||
:members: | ||
|
||
.. automodule:: pybrain.rl.explorers.continuous.sde | ||
|
||
.. autoclass:: StateDependentExplorer | ||
:members: | ||
|
||
Discrete Explorers | ||
-------------------- | ||
|
||
.. automodule:: pybrain.rl.explorers.discrete.discrete | ||
|
||
.. autoclass:: DiscreteExplorer | ||
:members: _setModule | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.explorers.discrete | ||
|
||
.. autoclass:: EpsilonGreedyExplorer | ||
:members: _forwardImplementation | ||
:show-inheritance: | ||
|
||
.. autoclass:: BoltzmannExplorer | ||
:members: activate, _forwardImplementation | ||
:show-inheritance: | ||
|
||
.. autoclass:: DiscreteStateDependentExplorer | ||
:members: activate, _forwardImplementation | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
:mod:`learners` -- RL Components: Learners | ||
================================================ | ||
|
||
Abstract classes | ||
----------------- | ||
|
||
.. automodule:: pybrain.rl.learners.learner | ||
|
||
.. autoclass:: Learner | ||
:members: | ||
|
||
.. autoclass:: EpisodicLearner | ||
:show-inheritance: | ||
|
||
.. autoclass:: DataSetLearner | ||
:show-inheritance: | ||
|
||
.. autoclass:: ExploringLearner | ||
:show-inheritance: | ||
|
||
.. autoclass:: OntogeneticLearner | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.learners.directsearch.directsearch | ||
|
||
.. autoclass:: DirectSearchLearner | ||
:show-inheritance: | ||
|
||
.. autoclass:: PhylogeneticLearner | ||
:show-inheritance: | ||
|
||
|
||
Value-based Learners | ||
------------------------ | ||
|
||
.. automodule:: pybrain.rl.learners.valuebased.valuebased | ||
|
||
.. autoclass:: ValueBasedLearner | ||
:members: | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.learners.valuebased | ||
|
||
.. autoclass:: Q | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: QLambda | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: SARSA | ||
:members: | ||
:show-inheritance: | ||
|
||
.. autoclass:: NFQ | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
Direct-search Learners | ||
------------------------ | ||
|
||
.. automodule:: pybrain.rl.learners.directsearch.policygradient | ||
|
||
.. autoclass:: PolicyGradientLearner | ||
:members: | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.learners.directsearch.reinforce | ||
|
||
.. autoclass:: Reinforce | ||
:members: | ||
:show-inheritance: | ||
|
||
.. automodule:: pybrain.rl.learners.directsearch.enac | ||
|
||
.. autoclass:: ENAC | ||
:members: | ||
:show-inheritance: | ||
|
||
|
||
.. note:: | ||
.. | ||
Black-box optimization algorithms can also be seen as direct-search RL algorithms, but are not included here. | ||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
:mod:`tasks` -- RL Components: Tasks | ||
================================================ | ||
|
||
.. automodule:: pybrain.rl.environments.task | ||
|
||
.. autoclass:: Task | ||
:members: | ||
|
||
.. automodule:: pybrain.rl.environments.episodic | ||
|
||
.. autoclass:: EpisodicTask | ||
: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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,7 @@ API | |
:glob: | ||
|
||
api/structure/* | ||
api/rl/* | ||
api/optimization/* | ||
api/datasets/* | ||
api/supervised/* | ||
|
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.