Reinforcement Learning With Variable Actions

后端 未结 3 1283
眼角桃花
眼角桃花 2021-02-05 20:28

All the reinforcement learning algorithms I\'ve read about are usually applied to a single agent that has a fixed number of actions. Are there any reinforcement learning algorit

3条回答
  •  一生所求
    2021-02-05 21:02

    If you have a number of actions for each soldier that are available or not depending on some conditions, then you can still model this as selection from a fixed set of actions. For example:

    • Create a "utility value" for each of the full set of actions for each soldier
    • Choose the highest valued action, ignoring those actions that are not available at a given time

    If you have multiple possible targets, then the same principle applies, except this time you model your utility function to take the target designation as an additional parameter, and run the evaluation function multiple times (one for each target). You pick the target that has the highest "attack utility".

提交回复
热议问题