senguptaumd / Background-Matting

Background Matting: The World is Your Green Screen
https://grail.cs.washington.edu/projects/background-matting/
4.78k stars 663 forks source link

Is the code wrong in the networks.py? #55

Closed Med-Process closed 4 years ago

Med-Process commented 4 years ago

Is there some errors or specific setting in the line 99 (networks.py)? oth_feat=torch.cat([self.comb_back(torch.cat([img_feat,back_feat],dim=1)),self.comb_seg(torch.cat([img_feat,seg_feat],dim=1)),self.comb_multi(torch.cat([img_feat,back_feat],dim=1))],dim=1)

May be it should be self.comb_multi(torch.cat([img_feat,multi_feat],dim=1))],dim=1))?

senguptaumd commented 4 years ago

Check issue #36.