Eric Kolve

Results 37 comments of Eric Kolve

With the most recent release (3.2.1 of ai2thor), a script is bundled with the installation named `ai2thor-xorg`, which performs the same task as the startx.py script that has been shared...

How many thor processes are you running? Do you have any idea whether the GPU(s) ran out of memory? Would it be possible to record the steps taken and replay...

Could you try this version? 91139c909576f3bf95a187c5b02c6fd455d06b48 (swap out the sha with this one with your install command). I don't expect this to resolve your issue, but it has some improvements...

Is it possible for you to reproduce this with just a single instance of thor? would it be possible for you to share your code (through email is fine) that...

Could you try to start Xorg using the following script: https://raw.githubusercontent.com/allenai/ai2thor/main/scripts/ai2thor-xorg That contains a few fixes that may address what you are seeing. That script will start a screen for...

You can run the following with version 3.5.1 and you won't need to have Xorg running: ```python import ai2thor.controller from ai2thor.platform import CloudRendering c = ai2thor.controller.Controller(platform=CloudRendering) ``` You will need...

Could you both run the following: ```python import ai2thor import ai2thor.controller c = ai2thor.controller.Controller(download_only=True) print(ai2thor.__version__) print(c._build.url) print(c._build.platform.name) print(c._build.platform.validate(None)) ``` and respond with the output? @xubo92 - Are you running within...

Can you take a look for an error in either `$HOME/.config/unity3d/Allen Institute for Artificial Intelligence/AI2-THOR` or in `$HOME/.ai2thor/log/unity.log`? ai2thor depends on Unity which requires an Xorg server to be running...

Could you tell me what version of Python, Linux, ai2thor you are using? Are you running within Docker? Can you provide a simple script to reproduce the error?

Could you try the following script that slightly modifies your code? ```python import multiprocessing from ai2thor.controller import Controller import os import time import psutil def create_controller(controller_id): scene_name = "FloorPlan21" print(f"Creating...