-
Hi, I am solving an MDP model with MCTS-DPW and am trying to traverse the search tree to follow the highest value actions up to a specific action. For example, I have actions=[0,1,2] and initial_state=A. I am looking for the highest-value sequence of actions up to the first action=0.
Are there any utilities that I can use to get this sequence, or do I have to write a function myself? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
gdaddi
Mar 20, 2023
Replies: 1 comment
-
Wrote a function myself. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gdaddi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wrote a function myself.