cpnota / autonomous-learning-library

A PyTorch library for building deep reinforcement learning agents.
MIT License
646 stars 72 forks source link

add_summary bug #311

Closed cpnota closed 8 months ago

cpnota commented 8 months ago

Calls

    super().add_scalar(
        f"summary/{name}/{aggregator}", value, self._get_step(value)
    )

instead of

    super().add_scalar(
        f"summary/{name}/{aggregator}", value, self._get_step(step)
    )

(value instead of step)