You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used the load_graph() method from House3DUtils to load a previously computed graph (the file path was valid), but self.graph was empty after the following lines:
So the first call to __init__ generated a .pkl file, with build_graph=True, and the shortest path computation worked. The 2nd time I created a House3DUtils object using the same path for loading the .pkl file, self.graph contained an empty graph; more precisely, this returns an empty graph.
I used the
load_graph()
method fromHouse3DUtils
to load a previously computed graph (the file path was valid), but self.graph was empty after the following lines:EmbodiedQA/utils/house3d.py
Lines 272 to 273 in 9113156
Not sure if anyone else has had this issue; in any case, the following code worked for me:
The text was updated successfully, but these errors were encountered: