You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In python/gym_jiminy/rllib/gym_jiminy/rllib/callbacks.py, line 45: episode.hist_data.setdefault(key, []).append(value)
if value is not of native type (i.e. for instance if it is numpy.float or numpy.int), it can create significant bottlenecks resulting in an important slow-down in training.
This is likely caused by Tensorboard.
The text was updated successfully, but these errors were encountered:
mwulfman
changed the title
[gym] Ensure values pass to episode.hist_data are of native types
[gym] Ensure values passed to episode.hist_data are of native types
Nov 23, 2023
In python/gym_jiminy/rllib/gym_jiminy/rllib/callbacks.py, line 45:
episode.hist_data.setdefault(key, []).append(value)
if
value
is not of native type (i.e. for instance if it is numpy.float or numpy.int), it can create significant bottlenecks resulting in an important slow-down in training.This is likely caused by Tensorboard.
The text was updated successfully, but these errors were encountered: