Test error
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?
Hi, I am running into the same situation, may I ask how did you solve this problem?