How EFPO orchestrates online learning
mainThe EFPO class is a wrapper designed for online learning orchestration. It bridges the gap between the model (the agent) and the environment. Instead of manual training loops, EFPO provides high-level methods to:
gather_experience_from_env: Interacts with a provided environment object for a specified number of steps to collect data (memories).learn_agent: Processes the collected memories to perform weight updates on the underlying model using a specified batch size.