mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-07 05:22:06 -07:00
1
This commit is contained in:
parent
56de1d9fa5
commit
9797a70fd3
5 changed files with 112 additions and 47 deletions
|
@ -231,7 +231,7 @@ class QModel(ModelBase):
|
|||
[self.decoder_dst, 'decoder_dst.npy'] ]
|
||||
|
||||
if self.is_training:
|
||||
self.src_dst_trainable_weights = self.encoder.get_weights() + self.decoder_src.get_weights() + self.decoder_dst.get_weights()
|
||||
self.src_dst_trainable_weights = self.encoder.get_weights() + self.inter.get_weights() + self.decoder_src.get_weights() + self.decoder_dst.get_weights()
|
||||
|
||||
# Initialize optimizers
|
||||
self.src_dst_opt = nn.TFRMSpropOptimizer(lr=2e-4, lr_dropout=0.3, name='src_dst_opt')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue