Note
Go to the end to download the full example code
A demo of RSUCBVI algorithm in MountainCar environment¶
Illustration of how to set up an RSUCBVI algorithm in rlberry. The environment chosen here is MountainCar environment.
from rlberry_research.agents import RSUCBVIAgent
from rlberry_research.envs.classic_control import MountainCar
env = MountainCar()
horizon = 170
print("Running RS-UCBVI on %s" % env.name)
agent = RSUCBVIAgent(env, gamma=0.99, horizon=horizon, bonus_scale_factor=0.1)
agent.fit(budget=500)
env.enable_rendering()
observation, info = env.reset()
for tt in range(200):
action = agent.policy(observation)
observation, reward, terminated, truncated, info = env.step(action)
done = terminated or truncated
video = env.save_video("_video/video_plot_rsucbvi.mp4")
Total running time of the script: (0 minutes 0.000 seconds)