mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-13 00:23:51 -07:00
fix H128 after refactoring
This commit is contained in:
parent
1398072427
commit
08550ac856
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ class Model(ModelBase):
|
||||||
y = upscale(256)(y)
|
y = upscale(256)(y)
|
||||||
y = upscale(128)(y)
|
y = upscale(128)(y)
|
||||||
else:
|
else:
|
||||||
input_ = self.keras.layers.Input(shape=(16, 16, 256))
|
input_ = Input(shape=(16, 16, 256))
|
||||||
x = input_
|
x = input_
|
||||||
x = upscale(256)(x)
|
x = upscale(256)(x)
|
||||||
x = upscale(128)(x)
|
x = upscale(128)(x)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue