Create a POMDP with time-dependent parameters #524
Unanswered
lumiereljy
asked this question in
Problem Implementation
Replies: 1 comment 1 reply
-
Perhaps you can have time as a state variable? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I found this package in Julia and I am working on solving a POMDP problem with time-dependent parameters. I am wondering what is the best way to implement time-dependent transition probability, observation probability and rewards, as I didn't find an example on the website. For example, if I want to make my transition model, observation model, and reward model depend on time and solve it for T=10 using incremental pruning algorithm, how should I go about the following tiger example?
Also, I am wondering if I can define my problem with a different order of events. Specifically, I take an action and make an observation, and then the state transition. So my observation model is Z(o|s,a), transition model is P(s'|s,a,o), and my reward model is r(s,a,o). I saw it is possible to define our own belief updater, but I am still not sure how this order of event can be handled in the Julia POMDP package. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions