-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtrain.py
executable file
·116 lines (107 loc) · 3.38 KB
/
train.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/usr/bin/env python3
# This file is covered by the LICENSE file in the root of this project.
import sys
import argparse
import subprocess
import datetime
import yaml
from shutil import copyfile
import os
import shutil
import __init__ as booger
from tasks.semantic.modules.trainer import *
if __name__ == '__main__':
parser = argparse.ArgumentParser("./train.py")
parser.add_argument(
'--dataset', '-d',
type=str,
required=True,
help='Dataset to train with. No Default',
)
parser.add_argument(
'--arch_cfg', '-ac',
type=str,
required=True,
help='Architecture yaml cfg file. See /config/arch for sample. No default!',
)
parser.add_argument(
'--data_cfg', '-dc',
type=str,
required=False,
default='config/labels/semantic-kitti.yaml',
help='Classification yaml cfg file. See /config/labels for sample. No default!',
)
parser.add_argument(
'--log', '-l',
type=str,
default=os.path.expanduser("~") + '/logs/' +
datetime.datetime.now().strftime("%Y-%-m-%d-%H:%M") + '/',
help='Directory to put the log data. Default: ~/logs/date+time'
)
parser.add_argument(
'--pretrained', '-p',
type=str,
required=False,
default=None,
help='Directory to get the pretrained model. If not passed, do from scratch!'
)
FLAGS, unparsed = parser.parse_known_args()
# print summary of what we will do
print("----------")
print("INTERFACE:")
print("dataset", FLAGS.dataset)
print("arch_cfg", FLAGS.arch_cfg)
print("data_cfg", FLAGS.data_cfg)
print("log", FLAGS.log)
print("pretrained", FLAGS.pretrained)
print("----------\n")
print("Commit hash (training version): ", str(
subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).strip()))
print("----------\n")
# open arch config file
try:
print("Opening arch config file %s" % FLAGS.arch_cfg)
ARCH = yaml.safe_load(open(FLAGS.arch_cfg, 'r'))
except Exception as e:
print(e)
print("Error opening arch yaml file.")
quit()
# open data config file
try:
print("Opening data config file %s" % FLAGS.data_cfg)
DATA = yaml.safe_load(open(FLAGS.data_cfg, 'r'))
except Exception as e:
print(e)
print("Error opening data yaml file.")
quit()
# create log folder
try:
print(FLAGS.log)
if os.path.isdir(FLAGS.log):
shutil.rmtree(FLAGS.log)
os.makedirs(FLAGS.log)
except Exception as e:
print(e)
print("Error creating log directory. Check permissions!")
quit()
# does model folder exist?
if FLAGS.pretrained is not None:
if os.path.isdir(FLAGS.pretrained):
print("model folder exists! Using model from %s" % (FLAGS.pretrained))
else:
print("model folder doesnt exist! Start with random weights...")
else:
print("No pretrained directory found.")
# copy all files to log folder (to remember what we did, and make inference
# easier). Also, standardize name to be able to open it later
try:
print("Copying files to %s for further reference." % FLAGS.log)
copyfile(FLAGS.arch_cfg, FLAGS.log + "/arch_cfg.yaml")
copyfile(FLAGS.data_cfg, FLAGS.log + "/data_cfg.yaml")
except Exception as e:
print(e)
print("Error copying files, check permissions. Exiting...")
quit()
# create trainer and start the training
trainer = Trainer(ARCH, DATA, FLAGS.dataset, FLAGS.log, FLAGS.pretrained)
trainer.train()