-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathinfer_poss.py
114 lines (105 loc) · 3.52 KB
/
infer_poss.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
#!/usr/bin/env python3
# This file is covered by the LICENSE file in the root of this project.
import argparse
import subprocess
import datetime
import yaml
from shutil import copyfile
import os
import shutil
from modules.user_poss import *
if __name__ == '__main__':
splits = ["train", "valid", "test"]
parser = argparse.ArgumentParser("./infer.py")
parser.add_argument(
'--dataset', '-d',
type=str,
required=True,
default=None,
help='Dataset to train with. No Default',
)
parser.add_argument(
'--log', '-l',
type=str,
required=True,
default=None,
help='Directory to put the predictions. Default: ~/logs/date+time'
)
parser.add_argument(
'--model', '-m',
type=str,
required=True,
default=None,
help='Directory to get the trained model.'
)
parser.add_argument(
'--split', '-s',
type=str,
required=True,
default="valid",
help='Split to evaluate on. One of ' +
str(splits) + '. Defaults to %(default)s',
)
FLAGS, unparsed = parser.parse_known_args()
# print summary of what we will do
print("----------")
print("INTERFACE:")
print("dataset", FLAGS.dataset)
print("log", FLAGS.log)
print("model", FLAGS.model)
print("infering", FLAGS.split)
print("----------\n")
# open arch config file
try:
print("Opening arch config file from %s" % FLAGS.model)
ARCH = yaml.safe_load(open(FLAGS.model + "/arch_cfg.yaml", 'r'))
except Exception as e:
print(e)
print("Error opening arch yaml file.")
quit()
# open data config file
try:
print("Opening data config file from %s" % FLAGS.model)
DATA = yaml.safe_load(open(FLAGS.model + "/data_cfg.yaml", 'r'))
except Exception as e:
print(e)
print("Error opening data yaml file.")
quit()
# create log folder
try:
if os.path.isdir(FLAGS.log):
shutil.rmtree(FLAGS.log)
os.makedirs(FLAGS.log)
os.makedirs(os.path.join(FLAGS.log, "sequences"))
# for seq in DATA["split"]["train"]:
# seq = '{0:02d}'.format(int(seq))
# print("train", seq)
# os.makedirs(os.path.join(FLAGS.log, "sequences", seq))
# os.makedirs(os.path.join(FLAGS.log, "sequences", seq, "predictions"))
for seq in DATA["split"]["valid"]:
seq = '{0:02d}'.format(int(seq))
print("valid", seq)
os.makedirs(os.path.join(FLAGS.log, "sequences", seq))
os.makedirs(os.path.join(FLAGS.log, "sequences", seq, "predictions"))
# for seq in DATA["split"]["test"]:
# seq = '{0:02d}'.format(int(seq))
# print("test", seq)
# os.makedirs(os.path.join(FLAGS.log, "sequences", seq))
# os.makedirs(os.path.join(FLAGS.log, "sequences", seq, "predictions"))
except Exception as e:
print(e)
print("Error creating log directory. Check permissions!")
raise
except Exception as e:
print(e)
print("Error creating log directory. Check permissions!")
quit()
# does model folder exist?
if os.path.isdir(FLAGS.model):
print("model folder exists! Using model from %s" % (FLAGS.model))
else:
print("model folder doesnt exist! Can't infer...")
quit()
# create user and infer dataset
user = User(ARCH, DATA, FLAGS.dataset, FLAGS.log, FLAGS.model,FLAGS.split)
user.infer()