mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-15 01:23:44 -07:00
fix
This commit is contained in:
parent
6dc1d43fe9
commit
54fa75aa13
3 changed files with 6 additions and 3 deletions
|
@ -19,7 +19,10 @@ def trainerThread (s2c, c2s, args, device_args):
|
|||
|
||||
training_data_src_path = Path( args.get('training_data_src_dir', '') )
|
||||
training_data_dst_path = Path( args.get('training_data_dst_dir', '') )
|
||||
pretraining_data_path = Path( args.get('pretraining_data_dir', '') )
|
||||
|
||||
pretraining_data_path = args.get('pretraining_data_dir', '')
|
||||
pretraining_data_path = Path(pretraining_data_path) if pretraining_data_path is not None else None
|
||||
|
||||
model_path = Path( args.get('model_path', '') )
|
||||
model_name = args.get('model_name', '')
|
||||
save_interval_min = 15
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue