mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
RecycleGAN : set minimum bs to 10
This commit is contained in:
parent
474fff248f
commit
46bda1d683
1 changed files with 2 additions and 2 deletions
|
@ -36,9 +36,9 @@ class Model(ModelBase):
|
|||
created_resolution = 64
|
||||
|
||||
try:
|
||||
created_batch_size = int ( input ("Batch_size (minimum/default - 16) : ") )
|
||||
created_batch_size = int ( input ("Batch_size (minimum/default - 10) : ") )
|
||||
except:
|
||||
created_batch_size = 16
|
||||
created_batch_size = 10
|
||||
created_batch_size = max(created_batch_size,1)
|
||||
|
||||
print ("Done. If training won't start, decrease resolution")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue