We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I observed a memory leak during the newEpisode call function:
newEpisode
dataset_file = "./tasks/R2R/data/R2R_train.json" HEIGHT = 480 VFOV = np.radians(60) sim = MatterSim.Simulator() sim.setCameraResolution(WIDTH, HEIGHT) sim.setDiscretizedViewingAngles(True) sim.setCameraVFOV(VFOV) sim.initialize() with open(dataset_file) as fid: data = json.load(fid) for sample in tqdm(data): scan_id = sample["scan"] for viewpoint_id in sample["path"]: sim.newEpisode([scan_id], [viewpoint_id], [0], [0])
My memory (16GB) is quickly getting full I tested with a binary compiled with EGL or OSMesa
The text was updated successfully, but these errors were encountered:
@guhur did you manage to find a solution for this probelm?
Sorry, something went wrong.
It's alright! Thank you :)
No branches or pull requests
I observed a memory leak during the
newEpisode
call function:My memory (16GB) is quickly getting full
I tested with a binary compiled with EGL or OSMesa
The text was updated successfully, but these errors were encountered: