Multiple controls, single state factor #112
-
Hi, Thank you very much for this package; it is a valuable contribution to the field. I have a question about the possibility of having two actions and a single factor whose transition depends on both actions. Thank you in advance. Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @patasab, Once I merge that branch (which you can already locally clone / dev install if you're interested in using it), then you will be able to specify hidden state factor transitions that depend on other factors. However, each hidden state factor will still have to depend on a single control factor, which is distinct from what you're imagining. With that being said, because a single control factor determines the dynamics of its own hidden state factor, and that hidden state factor may itself influence another hidden state factor in this new version of pymdp with 'interactable' hidden state factors, then in some ways control factors may "jointly determine" the dynamics of another hidden state factor, but only via their influence on their own proper hidden state factor. Do you think you could use this slightly-indirect approach to create the sort of dynamics you're imagining? If not, then I would encourage you to simply go with your second suggestion: "define a single control with all the configurations of actions". |
Beta Was this translation helpful? Give feedback.
Hi @patasab,
This is an interesting idea.
Over the past few days (on this branch) I've been working on something very similar to what you're asking about, but not quite the same.
Once I merge that branch (which you can already locally clone / dev install if you're interested in using it), then you will be able to specify hidden state factor transitions that depend on other factors. However, each hidden state factor will still have to depend on a single control factor, which is distinct from what you're imagining.
With that being said, because a single control factor determines the dynamics of its own hidden state factor, and that hidden state factor may itself influence another hidden sta…