File size: 206 Bytes
483f96c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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!!!")