Update app_hallo.py
Browse files- app_hallo.py +2 -2
app_hallo.py
CHANGED
@@ -112,8 +112,8 @@ def inference_process(args: argparse.Namespace):
|
|
112 |
cli_args = filter_non_none(vars(args))
|
113 |
config = OmegaConf.load(args.config)
|
114 |
config = OmegaConf.merge(config, cli_args)
|
115 |
-
source_image_path =
|
116 |
-
driving_audio_path =
|
117 |
save_path = config.save_path
|
118 |
if not os.path.exists(save_path):
|
119 |
os.makedirs(save_path)
|
|
|
112 |
cli_args = filter_non_none(vars(args))
|
113 |
config = OmegaConf.load(args.config)
|
114 |
config = OmegaConf.merge(config, cli_args)
|
115 |
+
source_image_path = args.source_image
|
116 |
+
driving_audio_path = args.driving_audio
|
117 |
save_path = config.save_path
|
118 |
if not os.path.exists(save_path):
|
119 |
os.makedirs(save_path)
|