PanFusion icon indicating copy to clipboard operation
PanFusion copied to clipboard

Test error

Open Wang-pengfei opened this issue 1 year ago • 1 comments

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?

image

Wang-pengfei avatar May 05 '24 09:05 Wang-pengfei

Hi, I am running into the same situation, may I ask how did you solve this problem?

zhuqiangLu avatar May 31 '25 07:05 zhuqiangLu