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
However manually setting the index forces a collector reset which sets the frame to -1. In order to load Collector checkpoints, I need to set the index in the constructor as follows:
I noticed setting the index in the constructor does not add this index to self._idxs and this causes an issue with saving results because saveCollector loops over self._idxs and will ignore the index set during construction.
The text was updated successfully, but these errors were encountered:
The collector object requires
idx
to save experiment results. Inrl-control-template
this index is set after the collector is constructed as follows:However manually setting the index forces a collector reset which sets the
frame
to -1. In order to load Collector checkpoints, I need to set the index in the constructor as follows:I noticed setting the index in the constructor does not add this index to
self._idxs
and this causes an issue with saving results becausesaveCollector
loops overself._idxs
and will ignore the index set during construction.The text was updated successfully, but these errors were encountered: