peteanderson80 / Matterport3DSimulator

AI Research Platform for Reinforcement Learning from Real Panoramic Images.
Other
504 stars 130 forks source link

AttributeError: 'MatterSim.Simulator' object has no attribute 'init' #68

Closed rmant closed 4 years ago

rmant commented 4 years ago

When I try training the R2R baseline, I keep getting this error. Any reason why?

File $PATH/Matterport3DSimulator/tasks/R2R/env.py", line 251, in make_sim sim.init() AttributeError: 'MatterSim.Simulator' object has no attribute 'init'

Thank you!

peteanderson80 commented 4 years ago

You must be using an old version of env.py. Current version has no line 251 and doesn't call 'init'. The simulator API was updated a while back to support batching.

rmant commented 4 years ago

You were right, I was using an old version. Thank you!