mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
converter: now writes a filename of current frame config,
SAE: removed multiscale decoder, because it's not effective
This commit is contained in:
parent
bef4e5d33c
commit
b6b92bded0
6 changed files with 325 additions and 450 deletions
|
@ -56,11 +56,14 @@ Conv2DTranspose = nnlib.Conv2DTranspose
|
|||
EqualConv2D = nnlib.EqualConv2D
|
||||
SeparableConv2D = KL.SeparableConv2D
|
||||
MaxPooling2D = KL.MaxPooling2D
|
||||
AveragePooling2D = KL.AveragePooling2D
|
||||
GlobalAveragePooling2D = KL.GlobalAveragePooling2D
|
||||
UpSampling2D = KL.UpSampling2D
|
||||
BatchNormalization = KL.BatchNormalization
|
||||
PixelNormalization = nnlib.PixelNormalization
|
||||
|
||||
LeakyReLU = KL.LeakyReLU
|
||||
ELU = KL.ELU
|
||||
ReLU = KL.ReLU
|
||||
PReLU = KL.PReLU
|
||||
tanh = KL.Activation('tanh')
|
||||
|
@ -70,6 +73,7 @@ Softmax = KL.Softmax
|
|||
|
||||
Lambda = KL.Lambda
|
||||
Add = KL.Add
|
||||
Multiply = KL.Multiply
|
||||
Concatenate = KL.Concatenate
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue