-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathmain.py
32 lines (25 loc) · 1.2 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Power by Zongsheng Yue 2022-05-19 15:15:17
import argparse
from omegaconf import OmegaConf
from utils.util_common import get_obj_from_str
def get_parser(**parser_kwargs):
parser = argparse.ArgumentParser(**parser_kwargs)
parser.add_argument("--save_dir", type=str, default="./save_dir",
help="Folder to save the checkpoints and training log")
parser.add_argument("--resume", type=str, const=True, default="", nargs="?",
help="resume from the save_dir or checkpoint")
parser.add_argument("--cfg_path", type=str, default="./configs/inpainting_debug.yaml",
help="Configs of yaml file")
parser.add_argument("--seed", type=int, default=10000, help="Random seed")
args = parser.parse_args()
return args
if __name__ == "__main__":
args = get_parser()
configs = OmegaConf.load(args.cfg_path)
# merge args to config
for key in vars(args):
configs[key] = getattr(args, key)
trainer = get_obj_from_str(configs.trainer.target)(configs)
trainer.train()