Attributeerror: 'timer' Object Has No Attribute '_seed'
This is the code I used. I found this code on https://github.com/openai/universe#breaking-down-the-example . As I'm getting error on remote manager so I have to copy this code to r
Solution 1:
So I think what you need to do add a few lines in the Timer module because the code checks whether the code implements certain functions (_step, _reset, _seed, etc...)
So all you need to do (I think) is add at the end of the Timer class:
def_seed(self, seed_num=0): # this is so that you can get consistent resultspass# optionally, you could add: random.seed(random_num)return
Post a Comment for "Attributeerror: 'timer' Object Has No Attribute '_seed'"