Note
Click here to download the full example code
Load and eval an agent¶
This example shows how to load and assess a trained agent.
Import required packages
from rlenv.envs.wall.core import AccentaEnv
import rlagent
Load the agent
agent = rlagent.load_agent()
Assess the agent
score = AccentaEnv.eval(agent)
print(score)
Total running time of the script: ( 0 minutes 0.000 seconds)