mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
SAE: changed base erode/blur mask size for converter
This commit is contained in:
parent
104651b292
commit
75f7a9575a
1 changed files with 2 additions and 2 deletions
|
@ -231,8 +231,8 @@ class SAEModel(ModelBase):
|
|||
def get_converter(self, **in_options):
|
||||
from models import ConverterMasked
|
||||
|
||||
base_erode_mask_modifier = 30 if self.options['face_type'] == 'f' else 100
|
||||
base_blur_mask_modifier = 0 if self.options['face_type'] == 'f' else 100
|
||||
base_erode_mask_modifier = 40 if self.options['face_type'] == 'f' else 100
|
||||
base_blur_mask_modifier = 10 if self.options['face_type'] == 'f' else 100
|
||||
|
||||
face_type = FaceType.FULL if self.options['face_type'] == 'f' else FaceType.HALF
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue