Skip to main content

A tool for easy data exploration in reinforcement learning environments.

Project description

#Replay Monitor

This is a tool for recording and observing data and measurements generated through the interactions between a reinforcement learning algorithm and an environment with an OpenAI Gym interface.

Currently, this tool offers two main features:

  • A convenient environment wrapper that allows the user to:

    • Record Tensorboard metrics during the training of the RL agent
    • Log the entire interaction with the environment in a local DB (for later use with the interactive tool below).
  • An interactive tool that visualize stored interactions (episodes and transitions) on-demand.

This tool supports complex state spaces, including tuple spaces.

Note: This is a premature release, keep in mind that since this package is still in development, bugs and changes are expected.

Installation

Install the package by

pip install replay-monitor

Usage Examples

Record Agent Interactions

To use the environment wrapper for storing interactions:

from replay_monitor import Monitor
import gym

env = gym.make('Breakout-v0')
env = Monitor(env, log_to_db=True)

Now, you can use the environment as usual, for example:

env.reset()
for i in range(300):
    action = env.action_space.sample()
    state, reward, done, info = env.step(action)

    if done:
        env.reset()
...

Use The Interactive Tool

Run the interactive tool by executing the following command in the command-line (make sure your environment is activated if you use virtualenv):

replay-monitor --db_path <db_path>

where <db_path> is the path to the .h5 file generated by the environment wrapper Monitor (you can omit --db_path if you use the default value).

Record Tensorboard Metrics

TODO

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

replay-monitor-0.0.5.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

replay_monitor-0.0.5-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file replay-monitor-0.0.5.tar.gz.

File metadata

  • Download URL: replay-monitor-0.0.5.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for replay-monitor-0.0.5.tar.gz
Algorithm Hash digest
SHA256 c4214cf6f85d46427724374bf9fa362cf8ae48ad5dab13c5db96e3a675395697
MD5 316f376fa86a2c778f0557b8da99e6fe
BLAKE2b-256 cdbe25334c3b7e285cf1663ef48eed0e828eebb6cd6c729bfd2554c6c1b560b6

See more details on using hashes here.

File details

Details for the file replay_monitor-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: replay_monitor-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for replay_monitor-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b7a9bf382405c292a7cd058ed9032658e7e0bf662d4c230de6ff77c9628c04b0
MD5 9dab6410b9a4a0064df57f21f2ebf508
BLAKE2b-256 ee7bb8e463f9f4dd846b4154b3193fe9d867ad4cf84174a9cece6d2355ec41fe

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page