-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
if scale >= 2:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)
if scale >= 4:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)
if scale >= 8:
output = Subpixel(64, (3,3), r = 2,padding='same',activation='relu')(output)
All the three lines are same.
Isn't it
output = Subpixel(64, (3, 3), r=scale, padding='same', activation='relu')(output) ?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels