envlogger icon indicating copy to clipboard operation
envlogger copied to clipboard

A tool for recording RL trajectories.

Results 4 envlogger issues
Sort by recently updated
recently updated
newest added

Hi! Would it be possible to publish Python 3.10 wheels? Other DeepMind projects are already publishing for 3.10 and it would be really nice to have envlogger. Thanks!

enhancement

If you take the `examples/tfds_random_agent_catch.py` sample and call `break` right the `env.reset()` call, before any actions are taken, then the tfds backend will fail with error message: ``` Exception has...

https://github.com/google-deepmind/envlogger/blob/main/envlogger/backends/rlds_utils.py line 49 if any action includes a tfds.features.Text feature then tfds.core.SequentialWriter will crash when trying to save that dataset to disc since it'll change the data type from a...

dataset generation code: ``` from envlogger.backends.tfds_backend_writer import * from envlogger.step_data import * import numpy as np import dm_env import tensorflow as tf from os.path import expanduser NB_FRAME = 3 SHAPE...