.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "auto_examples/demo_env/video_plot_rooms.py"
.. LINE NUMBERS ARE GIVEN BELOW.

.. only:: html

    .. note::
        :class: sphx-glr-download-link-note

        :ref:`Go to the end <sphx_glr_download_auto_examples_demo_env_video_plot_rooms.py>`
        to download the full example code

.. rst-class:: sphx-glr-example-title

.. _sphx_glr_auto_examples_demo_env_video_plot_rooms.py:


===============================
A demo of rooms environment
===============================
 Illustration of NRooms environment

.. video:: ../../video_plot_rooms.mp4
   :width: 600

.. GENERATED FROM PYTHON SOURCE LINES 11-42

.. code-block:: python3


    from rlberry_research.envs.benchmarks.grid_exploration.nroom import NRoom
    from rlberry_scool.agents.dynprog import ValueIterationAgent

    env = NRoom(
        nrooms=9,
        remove_walls=False,
        room_size=9,
        initial_state_distribution="center",
        include_traps=True,
    )
    horizon = env.observation_space.n

    agent = ValueIterationAgent(env, gamma=0.999, horizon=horizon)
    print("fitting...")
    info = agent.fit()
    print(info)

    env.enable_rendering()

    for _ in range(10):
        observation, info = env.reset()
        for tt in range(horizon):
            # action = agent.policy(observation)
            action = env.action_space.sample()
            observation, reward, terminated, truncated, info = env.step(action)
            done = terminated or truncated
            if done:
                break
    env.render()
    video = env.save_video("_video/video_plot_rooms.mp4")


.. rst-class:: sphx-glr-timing

   **Total running time of the script:** (0 minutes 0.000 seconds)


.. _sphx_glr_download_auto_examples_demo_env_video_plot_rooms.py:

.. only:: html

  .. container:: sphx-glr-footer sphx-glr-footer-example




    .. container:: sphx-glr-download sphx-glr-download-python

      :download:`Download Python source code: video_plot_rooms.py <video_plot_rooms.py>`

    .. container:: sphx-glr-download sphx-glr-download-jupyter

      :download:`Download Jupyter notebook: video_plot_rooms.ipynb <video_plot_rooms.ipynb>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_