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
When I run python main.py test --data=Matterport3D --model=EvalPanoGen for testing, I encountered an error: File "/home/pengfei_wang/PanFusion/dataset/PanoDataset.py", line 51, in init
new_data = set(self.data) & set(results) TypeError: unhashable type: 'dict'
Have you encountered this issue before?
When I modified new_data = set(self.data) & set(results) to new_data = set([tuple(d.values()) for d in self.data]) & set(results), the testing process no longer throws an error. However, it gets stuck on the following page, and there are no testing results in Wandb. Can you help me resolve this issue?
The text was updated successfully, but these errors were encountered:
When I run
python main.py test --data=Matterport3D --model=EvalPanoGen
for testing, I encountered an error: File "/home/pengfei_wang/PanFusion/dataset/PanoDataset.py", line 51, in initnew_data = set(self.data) & set(results) TypeError: unhashable type: 'dict'
Have you encountered this issue before?
When I modified
new_data = set(self.data) & set(results)
tonew_data = set([tuple(d.values()) for d in self.data]) & set(results)
, the testing process no longer throws an error. However, it gets stuck on the following page, and there are no testing results in Wandb. Can you help me resolve this issue?The text was updated successfully, but these errors were encountered: