Replies: 1 comment
-
Hi @Quinticx There are pros and cons to both approaches: Masking agentsPros
Cons
Dynamic number of agents### Pros
Cons
I think the first thing to solve is the question of dymanic specs. If anyone has a concrete use case to share I'd love to give it a look and try to prototype a solution! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a simulation where I would like to be able to vary the amount of total agents available at each timestep. For example, at t=0, I might have 4 agents available. At t=1, I would only need 3 agents. At t=2, I might need 5 agents. Ideally, I would like an agent to learn based on the environment how many agents are needed and set the number of available agents.
I was thinking of having a set limit to the max number of agents available at any timestep and then just masking out responses from agents that were not selected. I was wondering if there is any support for a behavior like this? Or if there was a way to actually change the number of agents per timestep rather than masking out responses.
Beta Was this translation helpful? Give feedback.
All reactions