-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
141 additions
and
140 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 +1 @@ | ||
include README.rst | ||
include README.md |
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,21 @@ | ||
# Models of Sequential Decision Making | ||
|
||
Implementations of basic rl and planning algorithms and domains | ||
mainly for cog sci research. | ||
|
||
|
||
## Installation | ||
|
||
### Installing the package in edit mode | ||
|
||
After downloading, go into the folder and install the package locally | ||
(with a symlink so its updated as source file changes are made): | ||
|
||
``` | ||
$ pip install -e . | ||
``` | ||
|
||
It is recommended to use a virtual environment. | ||
|
||
Related libraries: | ||
- [BURLAP](https://github.com/jmacglashan/burlap) |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
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,4 @@ | ||
from msdm.algorithms.vectorizedvalueiteration import \ | ||
VectorizedValueIteration | ||
from msdm.algorithms.laostar import LAOStar | ||
from msdm.algorithms.lrtdp import LRTDP |
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
6 changes: 3 additions & 3 deletions
6
...ap/algorithms/vectorizedvalueiteration.py → msdm/algorithms/vectorizedvalueiteration.py
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
pyrlap/core/algorithmclasses/__init__.py → msdm/core/algorithmclasses/__init__.py
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,7 @@ | ||
from msdm.core.assignment.assignmentmap import \ | ||
AssignmentMap, \ | ||
DefaultAssignmentMap | ||
from msdm.core.assignment.assignmentset import \ | ||
AssignmentSet | ||
from msdm.core.assignment.assignmentcache import \ | ||
AssignmentCache |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
from msdm.core.distributions.distributions import Distribution | ||
from msdm.core.distributions.multinomial import Multinomial | ||
from msdm.core.distributions.discretefactortable import \ | ||
DiscreteFactorTable |
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
File renamed without changes.
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
File renamed without changes.
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,4 @@ | ||
from msdm.core.problemclasses.mdp.mdp import * | ||
from msdm.core.problemclasses.mdp.tabularmdp import * | ||
from msdm.core.problemclasses.mdp.factoredmdp import * | ||
from msdm.core.problemclasses.mdp.policy import * |
2 changes: 1 addition & 1 deletion
2
...ap/core/problemclasses/mdp/factoredmdp.py → msdm/core/problemclasses/mdp/factoredmdp.py
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
6 changes: 3 additions & 3 deletions
6
pyrlap/core/problemclasses/mdp/mdp.py → msdm/core/problemclasses/mdp/mdp.py
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,2 @@ | ||
from msdm.core.problemclasses.mdp.policy.tabularpolicy import TabularPolicy | ||
from msdm.core.problemclasses.mdp.policy.policy import Policy |
4 changes: 2 additions & 2 deletions
4
.../core/problemclasses/mdp/policy/policy.py → .../core/problemclasses/mdp/policy/policy.py
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
8 changes: 4 additions & 4 deletions
8
...roblemclasses/mdp/policy/tabularpolicy.py → ...roblemclasses/mdp/policy/tabularpolicy.py
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
4 changes: 2 additions & 2 deletions
4
pyrlap/core/problemclasses/mdp/tabularmdp.py → msdm/core/problemclasses/mdp/tabularmdp.py
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
pyrlap/core/problemclasses/posg/posg.py → msdm/core/problemclasses/posg/posg.py
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
File renamed without changes.
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,2 @@ | ||
from msdm.core.problemclasses.stochasticgame.stochasticgame \ | ||
import StochasticGame, ANDStochasticGame |
6 changes: 3 additions & 3 deletions
6
...mclasses/stochasticgame/stochasticgame.py → ...mclasses/stochasticgame/stochasticgame.py
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,3 @@ | ||
from msdm.domains.gridworld.mdp import GridWorld | ||
from msdm.domains.modified.stickyaction import StickyActionMDP | ||
from msdm.domains.gridworld.stickyactiongw import StickyActionGridWorld |
File renamed without changes.
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
File renamed without changes.
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.