Open Aaron1993 opened 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)
merge6 = concatenate([drop4,up6], axis = 3)
merge7 = concatenate([conv3,up7], axis = 3)
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)