Replies: 1 comment 6 replies
-
Hey Tom, Very cool! It looks like a great start! I think you got the main concepts right. I will have a lot of feedback, but will start with the following things:
Let me know if that all makes sense. It would also be possible to have a short zoom meeting if you have complicated questions that are difficult to write out. Good luck! I think this will be really nice when finished. |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have implemented a concept version of
FiniteHorizonPOMDPs.jl
and created 10 tiles GridWorld (as proposed by @zsunberg) to show the idea of a possible solution.The package consists of a simple epoch solver that currently works with the MDP version of DiscreteValueIteration Solver and a structure that stores its results.
Repository is here.
Example instance is tested as equality comparison of the result of value iteration solver against proposed finite horizon interface.
As I did not find a straight forward solution to implement MDP to FiniteHorizonMDP wrapper I created two problem definitions. One for value iteration and one for the finite horizon. Those are stored in
/test/instances/...
I think that the mentioned wrapper would make the problem implementation much easier (and it is also proposed in JuliaPOMDP/FiniteHorizonPODMP.jl's readme file).
Also, the method works only with ValueIteration so far. I will be glad for more solver recommendations
I will be happy for any feedback from the community as to which direction should I head with implementation.
Tom
Beta Was this translation helpful? Give feedback.
All reactions