Belief associated with initial state and restricting actions for certain states #464
Replies: 1 comment 9 replies
-
By default, if you run planner = solve(POMCPSolver(#=params=#), pomdp)
a, info = action_info(planner, Deterministic((100, 0)))
Yes, you can define the POMDP with an function actions(m, b)
if all(state[2] == b for state in support(b))
return # limited action space
else
return # full action space
end
end |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am using the BasicPOMCP algorithm for solving my POMDP. The state for my POMDP is a tuple (s,c) and I declare my POMDP using the QuickPOMDPs interface. I assign the initial state as Deterministic((100,0)). I have two questions:
Beta Was this translation helpful? Give feedback.
All reactions