zhixuhao / unet

unet for image segmentation
MIT License
4.6k stars 2k forks source link

The concatenate #169

Open Aaron1993 opened 4 years ago

Aaron1993 commented 4 years ago

In file model.py, the layer "merge6" was concated by "drop4" and "up6", but "merge7,8,9" was concated by conv3,2,1. I wanna just ask why? Thanks. merge6 = concatenate([drop4,up6], axis = 3) merge7 = concatenate([conv3,up7], axis = 3)