alfred / scripts /check_thor.py
ch-min-ys's picture
delete ff_planner
483f96c
from ai2thor.controller import Controller
c = Controller()
c.start()
event = c.step(dict(action="MoveAhead"))
assert event.frame.shape == (300, 300, 3)
print(event.frame.shape)
print("Everything works!!!")