Open LongruiDong opened 5 years ago
@LongruiDong
Sorry for that we are not supposed to use '--evaluate', because some code may be wrong.
And if you really want to use it, you should modify some small mistakes. Here, the error 'unexpected key "seg2d.ASPPout.weight" in state_dict' means the weight 'seg2d.ASPPout.weight' in the checkpoint has no corresponding layers in the network. This is ok, for this weight is useless in the completion network. Thus, you can find the code 'model.load_state_dict(chpo['state_dict'])' and modify it as 'model.load_state_dict(chpo['state_dict'], strict = False)'.
I think it will work though I don't have a try(Sorry(ૢ˃ꌂ˂ૢ)), because this is a common error.
Thanks and welcome questions!
Hi, me again 23333... When I evaluate Semantic scene completion on NYU data by running
an Error appears
do u know what is the problem?