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 deepq.ReplayBuffer, the docstring for ReplayBuffer._storage says [(np.ndarray, float, float, np.ndarray, bool)]
but shouldn't it actually be """[(np.ndarray, [float], float, np.ndarray, bool)]?
I think this would be correct for two reasons:
Actions could be multi-dimensional
The docstring for ReplayBuffer.add claims :param action: ([float]) the action,
which I think is an inconsistency with the storage docstring.
Am I missing something here?
The text was updated successfully, but these errors were encountered:
* Bump version
* Add a message to PPO2 assert (closes#625)
* Update replay buffer doctring (closes#610)
* Don't specify a version for pytype
* Fix `VecEnv` docstrings (closes#577)
* Typo
* Re-add python version for pytype
In deepq.ReplayBuffer, the docstring for
ReplayBuffer._storage
says[(np.ndarray, float, float, np.ndarray, bool)]
but shouldn't it actually be
"""[(np.ndarray, [float], float, np.ndarray, bool)]
?I think this would be correct for two reasons:
ReplayBuffer.add
claims:param action: ([float]) the action
,which I think is an inconsistency with the storage docstring.
Am I missing something here?
The text was updated successfully, but these errors were encountered: