poppinace / indexnet_matting

(ICCV'19) Indices Matter: Learning to Index for Deep Image Matting
Other
389 stars 90 forks source link

Questions about B11 model #21

Closed kfeng123 closed 4 years ago

kfeng123 commented 4 years ago

Thank you for your great work!

I have two questions regarding your B11 model (Unet). (1) It seems that your code uses both conv and pooling for downsampling, which maybe a typo? So which downsampling module do you use? (2) Is the crop size 320 or 321 in your training of B11?

poppinace commented 4 years ago

@kfeng123 Hi, for your question: (1) I only use pooling. I have changed 2-stride conv to be 1-stride in B11. (2) 320

kfeng123 commented 4 years ago

Thank you!