-
Notifications
You must be signed in to change notification settings - Fork 0
/
eval.py
57 lines (49 loc) · 2.08 KB
/
eval.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
import torch
import os
import func_utils
from datasets.dotadevkit.dotadevkit.cli import merge
class EvalModule(object):
def __init__(self, dataset, num_classes, model, decoder):
torch.manual_seed(317)
self.device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
self.dataset = dataset
self.num_classes = num_classes
self.model = model
self.decoder = decoder
def load_model(self, model, resume):
checkpoint = torch.load(resume, map_location=lambda storage, loc: storage)
print('loaded weights from {}, epoch {}'.format(resume, checkpoint['epoch']))
state_dict_ = checkpoint['model_state_dict']
model.load_state_dict(state_dict_, strict=False)
return model
def evaluation(self, args, down_ratio):
save_path = 'weights_'+args.dataset
self.model = self.load_model(self.model, os.path.join(save_path, args.resume))
self.model = self.model.to(self.device)
self.model.eval()
result_path = 'result_'+args.dataset
if not os.path.exists(result_path):
os.mkdir(result_path)
dataset_module = self.dataset[args.dataset]
dsets = dataset_module(data_dir=args.data_dir,
phase='test',
input_h=args.input_h,
input_w=args.input_w,
down_ratio=down_ratio)
func_utils.write_results(args,
self.model,
dsets,
down_ratio,
self.device,
self.decoder,
result_path,
print_ps=True)
if args.dataset == 'dota':
merge_path = 'merge_'+args.dataset
if not os.path.exists(merge_path):
os.mkdir(merge_path)
merge(result_path, merge_path)
return None
else:
ap = dsets.dec_evaluation(result_path)
return ap