forked from GAP-LAB-CUHK-SZ/RfDNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
executable file
·39 lines (33 loc) · 1.21 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
33
34
35
36
37
38
# Main file for training and testing
# author: ynie
# date: July, 2020
import argparse
from configs.config_utils import CONFIG
def parse_args():
'''PARAMETERS'''
parser = argparse.ArgumentParser('Instance Scene Completion.')
parser.add_argument('--config', type=str, default='configs/config_files/ISCNet.yaml',
help='configure file for training or testing.')
parser.add_argument('--mode', type=str, default='train', help='train, test or demo.')
parser.add_argument('--demo_path', type=str, default='demo/inputs/scene0549_00.off', help='Please specify the demo path.')
return parser.parse_args()
if __name__ == '__main__':
args = parse_args()
cfg = CONFIG(args.config)
cfg.update_config(args.__dict__)
from net_utils.utils import initiate_environment
initiate_environment(cfg.config)
'''Configuration'''
cfg.log_string('Loading configurations.')
cfg.log_string(cfg.config)
cfg.write_config()
'''Run'''
if cfg.config['mode'] == 'train':
import train
train.run(cfg)
if cfg.config['mode'] == 'test':
import test
test.run(cfg)
if cfg.config['mode'] == 'demo':
import demo
demo.run(cfg)