Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
pymdptoolbox
Commits
57517657
Commit
57517657
authored
Jan 25, 2013
by
Steven Cordwell
Browse files
HISTORY and setup.py updates for tagging v0.12
parent
aefbe056
Changes
2
Hide whitespace changes
Inline
Side-by-side
HISTORY
View file @
57517657
2013-01-25
v0.12 - PolicyIterationModified has been completed and is feature complete. Unit tests have not yet been written, and the docs need fixing.
>>> import mdp
>>> P, R = mdp.exampleForest()
>>> pim = mdp.PolicyIterationModified(P, R, 0.9)
>>> pim.iterate()
>>> pim.policy
(0, 0, 0)
v0.11 - QLearning is now ready for use in the module, with a couple of unit tests already written. The class is used as follows:
>>> import mdp
>>> import numpy as np
...
...
setup.py
View file @
57517657
...
...
@@ -3,7 +3,7 @@
from
distutils.core
import
setup
setup
(
name
=
"PyMDPtoolbox"
,
version
=
"0.1
1
"
,
version
=
"0.1
2
"
,
description
=
"Python Markov Decision Problem Toolbox"
,
author
=
"Steven Cordwell"
,
author_email
=
"steven.cordwell@uqconnect.edu.au"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment