alexgkendall / SegNet-Tutorial

Files for a tutorial to train SegNet for road scenes using the CamVid dataset
http://mi.eng.cam.ac.uk/projects/segnet/tutorial.html
847 stars 517 forks source link

The usage of upsample #115

Open 408550969 opened 6 years ago

408550969 commented 6 years ago

There is such a paragraph in segnet_sun.prototxt: layer { name: "upsample5" type: "Upsample" bottom: "pool5" bottom: "pool5_mask" top: "pool5_D" upsample_param { scale: 2 upsample_h: 23 upsample_w: 30 } } Why there are 2 bottom?What's the meaning of the scale: 2? Could I use one bottom?