diff --git a/README.md b/README.md index 95478ae..fd87e07 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,8 @@ LIAEF128 Cage video: ![](https://github.com/iperov/DeepFaceLab/blob/master/doc/SAE_Cage_1.jpg) +![](https://github.com/iperov/DeepFaceLab/blob/master/doc/SAE_Navalniy_0.jpg) + SAE model Cage-Trump video: https://www.youtube.com/watch?v=2R_aqHBClUQ ![](https://github.com/iperov/DeepFaceLab/blob/master/doc/DeepFaceLab_convertor_overview.png) diff --git a/doc/SAE_Navalniy_0.jpg b/doc/SAE_Navalniy_0.jpg new file mode 100644 index 0000000..c010630 Binary files /dev/null and b/doc/SAE_Navalniy_0.jpg differ diff --git a/models/Model_SAE/Model.py b/models/Model_SAE/Model.py index 85f23c7..403d334 100644 --- a/models/Model_SAE/Model.py +++ b/models/Model_SAE/Model.py @@ -29,7 +29,7 @@ class SAEModel(ModelBase): if is_first_run: self.options['resolution'] = input_int("Resolution (64,128, ?:help skip:128) : ", default_resolution, [64,128], help_message="More resolution requires more VRAM.") self.options['archi'] = input_str ("AE architecture (df, liae, ?:help skip:liae) : ", default_archi, ['df','liae'], help_message="DF keeps faces more natural, while LIAE can fix overly different face shapes.").lower() - self.options['lighter_encoder'] = input_bool ("Use lightweight encoder? (y/n, ?:help skip:n) : ", False, help_message="Lightweight encoder is 35% faster, but it is not tested on various scenes.").lower() + self.options['lighter_encoder'] = input_bool ("Use lightweight encoder? (y/n, ?:help skip:n) : ", False, help_message="Lightweight encoder is 35% faster, but it is not tested on various scenes.") else: self.options['resolution'] = self.options.get('resolution', default_resolution) self.options['archi'] = self.options.get('archi', default_archi)