-
Notifications
You must be signed in to change notification settings - Fork 4k
Added POMDP-value-iteration #929
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3a9b2fd
Added POMDP value iteration
ad71 f1606c4
Added plot_pomdp_utility function
ad71 5963be2
Added tests for pomdp-value-iteration
ad71 e981747
Updated README.md
ad71 2fac992
Fixed notebook import
ad71 6a6615a
Changed colors
ad71 f4f5b50
Added notebook sections for POMDP and pomdp_value_iteration
ad71 d9011f3
Fixed notebook parsing error
ad71 e22e7dd
Replace pomdp.ipynb
ad71 2d5e074
Updated README.md
ad71 47d6638
Fixed line endings
ad71 d401af8
Fixed line endings
ad71 2f25b7f
Fixed line endings
ad71 da199dc
Fixed line endings
ad71 089da5e
Removed numpy dependency
ad71 5a79deb
Added docstrings
ad71 8653daf
Fix tests
ad71 a3c78c9
Added a test for pomdp_value_iteration
ad71 7a80c3e
Remove numpy dependencies from mdp.ipynb
ad71 1c7a8cc
Added POMDP to mdp_apps.ipynb
ad71 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added docstrings
- Loading branch information
commit 5a79debe9c453f9ebdcc62f2ac3fdffb698f3e87
There are no files selected for viewing
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure ... maybe we should use numpy.matrix ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we are to use
numpyhere, we should consider usingnumpyon the rest of the repository as well. It would be an interesting undertaking and I am all for it, but adding another dependency is something that needs discussion.Maybe an Issue can be opened to discuss this when this is more concrete?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we aren't supposed to use external libraries, but using
numpywill make room for a lot of improvements in many algorithms. I think this can be discussed in a new issue as @MrDupin suggested.