Created
April 8, 2018 15:49
-
-
Save tristansokol/dc14b8d3a146ddcc74f0b882e2c4b578 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def step(self, a): | |
# ... does all the stuff | |
rew, done, info = self.compute_step(ob) | |
return ob, float(rew), bool(done), dict(info) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment