6 lines
183 B
Python
6 lines
183 B
Python
class Batch(object):
|
|
"""Suggested keys: [obs, act, rew, done, obs_next, info]"""
|
|
def __init__(self, **kwargs):
|
|
super().__init__()
|
|
self.__dict__.update(kwargs)
|