def __init__(self):
super(Generator_ResBlock_9, self).__init__(
c1 = CBR(3, 32, bn=True, sample='none-7'),
c2 = CBR(32, 64, bn=True, sample='down'),
c3 = CBR(64, 128, bn=True, sample='down'),
c4 = ResBlock(128, bn=True),
c5 = ResBlock(128, bn=True),
c6 = ResBlock(128, bn=True),
c7 = ResBlock(128, bn=True),
c8 = ResBlock(128, bn=True),
c9 = ResBlock(128, bn=True),
c10 = ResBlock(128, bn=True),
c11 = ResBlock(128, bn=True),
c12 = ResBlock(128, bn=True),
c13 = CBR(128, 64, bn=True, sample='up'),
c14 = CBR(64, 32, bn=True, sample='up'),
c15 = CBR(32, 3, bn=True, sample='none-7', activation=F.tanh)
)
评论列表
文章目录