Skip to content

return only one dimension in multidimensional observation? #378

Discussion options

You must be logged in to vote

Hi @doweichert , I would recommend just returning one number for the observation. Since the observation distribution is conditioned on the action, belief updaters and solvers will be able to "understand" that the observation is the x dimension when action 1 is taken and in the y dimension when action 2 is taken. It's also worth noting that for most belief updaters (e.g. particle filters) you will need the explicit observation distribution. Therefore I would recommend implementing the problem something like this (let's say that there is Gaussian noise with standard deviation 1 on the observation):

m = QuickPOMDP(
    obstype = Float64,
    gen = function (s, a, rng)
        # sample s' and r

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@doweichert
Comment options

Answer selected by doweichert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #377 on November 29, 2021 18:34.