forked from deep-skill-chaining/deep-skill-chaining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
63 lines (59 loc) · 1.17 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
'''
simple_rl
abstraction/
action_abs/
state_abs/
...
agents/
AgentClass.py
QLearningAgentClass.py
RandomAgentClass.py
RMaxAgentClass.py
...
experiments/
ExperimentClass.py
ExperimentParameters.py
mdp/
MDPClass.py
StateClass.py
planning/
BeliefSparseSamplingClass.py
MCTSClass.py
PlannerClass.py
ValueIterationClass.py
pomdp/
BeliefMDPClass.py
BeliefStateClass.py
BeliefUpdaterClass.py
POMDPClass.py
tasks/
chain/
ChainMDPClass.py
ChainStateClass.py
grid_world/
GridWorldMPDClass.py
GridWorldStateClass.py
...
utils/
chart_utils.py
make_mdp.py
run_experiments.py
Author and Maintainer: David Abel (cs.brown.edu/~dabel/)
Last Updated: April 23rd, 2018
Contact: [email protected]
License: Apache
'''
# Fix xrange to cooperate with python 2 and 3.
try:
xrange
except NameError:
xrange = range
# Fix input to cooperate with python 2 and 3.
try:
input = raw_input
except NameError:
pass
# Imports.
import simple_rl.abstraction, simple_rl.agents, simple_rl.experiments, simple_rl.mdp, simple_rl.planning, simple_rl.tasks, simple_rl.utils
import simple_rl.run_experiments
from simple_rl._version import __version__