belief-dependent transition function #440
-
Hi, Is there a way to implement a transition function that depends on the belief state? I checked the source code of both POMDPs and QuickPOMDP and there does not seem to be an obvious way of doing it. Thank you!
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @gdaddi There is not a way to do this because it would not conform to the definition of a POMDP that we are using. If you can describe the desired behavior, we may be able to find another way to implement it. (also note that |
Beta Was this translation helpful? Give feedback.
Hi @gdaddi
There is not a way to do this because it would not conform to the definition of a POMDP that we are using. If you can describe the desired behavior, we may be able to find another way to implement it.
(also note that
transition
should return a distribution over states not a single new state as you have hinted at in the comment in your code.)