does verifiers allow for multiple agents in an environment? #380
Replies: 1 comment
-
|
To my understanding, verifiers doesn't natively support multiple agents in a single environment. It's designed around a single agent interacting with an environment Current Architecture
Reference: verifiers/envs/multiturn_env.py:52-156 - The rollout() method orchestrates a single model's interaction with the environment
2 Workarounds though Option 1: Environment-Simulated Opponent Implement one agent as part of the environment logic Option 2: Sequential Multi-Agent Rollouts (Self-Play) Generate multiple rollouts with different model instances and aggregate results: I can try to help code up examples of option 1 and 2, but not a bad idea to add a MultiAgentEnv base class @willccbb |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
trying to implement a multi-agent game, and wondering if there is a way to do this with training through verifiers
Beta Was this translation helpful? Give feedback.
All reactions