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
4f17fb5f
Commit
4f17fb5f
authored
Jan 24, 2013
by
Steven Cordwell
Browse files
update to HISTORY file
parent
dc4978c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
HISTORY
View file @
4f17fb5f
v0.9 - the value iteration Gauss-Seidel algorithm is now in working order. The class ValueIterationGS should be stable and usable. Use like this:
>>> import mdp
>>> P, R = mdp.exampleRand(10, 3) # to create a random transition and reward matrices with 10 states and 3 actions
>>> vigs = mdp.ValueIterationGS(P, R, 0.9 # assuming a discount rate of 0.9
>>> vigs.iterate() # to run the algorithm, then type vigs.policy after it has finished to see the optimal policy
v0.8 - The policy iteration algorithm port is now usable. The PolicyIteration class should now be stable. To use:
>>> import mdp
>>> P, R = mdp.exampleForest() # to use the forest example as the transition and reward matrices
...
...
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