-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.py
54 lines (43 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import argparse
import logging
import os
import numpy as np
import sys
import torch
from pprint import pprint
from config_vipc import cfg
from run.train import train_net
from run.test import test_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 SnowflakeNet')
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!')
test_net(cfg)
if __name__ == '__main__':
# Check python version
seed = 1
set_seed(seed)
logging.getLogger('PIL').setLevel(logging.WARNING)
logging.basicConfig(format='[%(levelname)s] %(asctime)s %(message)s', level=logging.DEBUG)
main()