-
Notifications
You must be signed in to change notification settings - Fork 17
/
main_pcn.py
61 lines (49 loc) · 1.61 KB
/
main_pcn.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#! /usr/bin/python3
# -*- coding: utf-8 -*-
# @Author: Peng Xiang
import argparse
import logging
import os
import numpy as np
import sys
import torch
from pprint import pprint
from config_pcn import cfg
from core.train_pcn import train_net
from core.test_pcn import test_net
from core.inference_pcn import inference_net
os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
os.environ["CUDA_VISIBLE_DEVICES"] = cfg.CONST.DEVICE
def set_seed(seed):
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
def get_args_from_command_line():
parser = argparse.ArgumentParser(description='The argument parser of PMP-Net')
parser.add_argument('--test', dest='test', help='Test neural networks', action='store_true')
parser.add_argument('--inference', dest='inference', help='Inference for benchmark', action='store_true')
args = parser.parse_args()
return args
def main():
# Get args from command line
args = get_args_from_command_line()
print('cuda available ', torch.cuda.is_available())
# Print config
print('Use config:')
pprint(cfg)
if not args.test and not args.inference:
train_net(cfg)
else:
if cfg.CONST.WEIGHTS is None:
raise Exception('Please specify the path to checkpoint in the configuration file!')
if args.test:
test_net(cfg)
else:
inference_net(cfg)
if __name__ == '__main__':
# Check python version
seed = 1
set_seed(seed)
logging.basicConfig(format='[%(levelname)s] %(asctime)s %(message)s', level=logging.DEBUG)
main()