还原SAEHD模型参数

This commit is contained in:
cszdlt 2019-12-29 00:53:53 +08:00
commit c104ba6239

View file

@ -213,7 +213,7 @@ class SAEHDModel(ModelBase):
x = Add()([x, x0])
x = LeakyReLU(0.2)(x)
return Conv2D(output_nc, kernel_size=5, padding='same', activation='sigmoid')(x)
return Conv2D(output_nc, kernel_size=1, padding='same', activation='sigmoid')(x)
return func
@ -327,7 +327,7 @@ class SAEHDModel(ModelBase):
x = Add()([x, x0])
x = LeakyReLU(0.2)(x)
return Conv2D(output_nc, kernel_size=5, padding='same', activation='sigmoid')(x)
return Conv2D(output_nc, kernel_size=1, padding='same', activation='sigmoid')(x)
return func