forked from YuxiaoWang-AI/PIHOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval_inference.py
181 lines (143 loc) · 5.33 KB
/
eval_inference.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# System libs
import os
import argparse
from distutils.version import LooseVersion
# Numerical libs
import numpy as np
import torch
import torch.nn as nn
from tqdm import tqdm
from PIL import Image
# Our libs
from hot.config import cfg
from hot.dataset import TestDataset
from hot.models import ModelBuilder, SegmentationModule
from hot.utils import colorEncode, setup_logger
from hot.lib.nn import user_scattered_collate, async_copy_to
from hot.lib.utils import as_numpy
with open('data/colors.npy', 'rb') as f:
colors = np.load(f)
def visualize_result(data, pred, dir_result):
(img, _, info) = data
img_name = info.split('/')[-1]
img_im = Image.fromarray(img)
# prediction
pred_color = colorEncode(pred, colors)
pred_color_im = Image.fromarray(pred_color)
comp_pred = Image.blend(img_im, pred_color_im, 0.7)
comp_pred = np.array(comp_pred)
im_vis=np.concatenate((img, comp_pred),
axis=1)
img_name = info.split('/')[-1]
Image.fromarray(im_vis).save(os.path.join(dir_result, img_name))
def evaluate(segmentation_module, loader, cfg, gpu, epoch):
print('evaluating epoch:', epoch)
segmentation_module.eval()
pbar = tqdm(total=len(loader))
for idx, batch_data in enumerate(loader):
batch_data = batch_data[0]
seg_label = as_numpy(batch_data['seg_label'])
# img_resized_list = batch_data['img_data']
torch.cuda.synchronize()
with torch.no_grad():
segSize = (seg_label.shape[0], seg_label.shape[1])
feed_dict = batch_data.copy()
feed_dict['img_data'] = batch_data['img_data'].unsqueeze(0)
feed_dict['depth_label'] = batch_data['depth_label'].unsqueeze(0)
feed_dict['inpaint_label'] = batch_data['inpaint_label'].unsqueeze(0)
del feed_dict['img_ori']
del feed_dict['info']
feed_dict = async_copy_to(feed_dict, gpu)
# forward pass
scores_tmp, scores_part_tmp = segmentation_module(feed_dict, segSize=segSize)
scores_tmp = nn.functional.interpolate(
scores_tmp, size=(480, 640), mode='bilinear', align_corners=False)
_, pred = torch.max(scores_tmp, dim=1)
pred = as_numpy(pred.squeeze(0).cpu())
torch.cuda.synchronize()
# visualization
if cfg.TEST.visualize:
visualize_result(
(batch_data['img_ori'], None, batch_data['info']),
pred,
os.path.join(cfg.DIR, 'result_epoch_'+epoch),
)
pbar.update(1)
def main(cfg, gpu, epoch):
torch.cuda.set_device(gpu)
# Network Builders
net_encoder = ModelBuilder.build_encoder(
arch=cfg.MODEL.arch_encoder.lower(),
fc_dim=cfg.MODEL.fc_dim,
weights=cfg.MODEL.weights_encoder)
net_decoder = ModelBuilder.build_decoder(
cfg=cfg,
arch=cfg.MODEL.arch_decoder.lower(),
fc_dim=cfg.MODEL.fc_dim,
num_class=cfg.DATASET.num_class,
weights=cfg.MODEL.weights_decoder,
use_softmax=True)
crit = nn.NLLLoss(ignore_index=-1)
segmentation_module = SegmentationModule(net_encoder, net_decoder, crit)
# Dataset and Loader
dataset_val = TestDataset(
"./data/HOT",
cfg.DATASET.list_test,
cfg.DATASET)
loader_val = torch.utils.data.DataLoader(
dataset_val,
batch_size=cfg.TEST.batch_size,
shuffle=False,
collate_fn=user_scattered_collate,
num_workers=5,
drop_last=True)
segmentation_module.cuda()
# Main loop
evaluate(segmentation_module, loader_val, cfg, gpu, epoch)
print('Evaluation Done!')
if __name__ == '__main__':
assert LooseVersion(torch.__version__) >= LooseVersion('0.4.0'), \
'PyTorch>=0.4.0 is required'
parser = argparse.ArgumentParser(
description="PyTorch Semantic Segmentation Validation"
)
parser.add_argument(
"--cfg",
default="config/hot-resnet50dilated-c1.yaml",
metavar="FILE",
help="path to config file",
type=str,
)
parser.add_argument(
"--gpu",
default=0,
help="gpu to use"
)
parser.add_argument(
"--epoch",
default=0,
help="which epoch"
)
parser.add_argument(
"opts",
help="Modify config options using the command-line",
default=None,
nargs=argparse.REMAINDER,
)
args = parser.parse_args()
cfg.merge_from_file(args.cfg)
cfg.merge_from_list(args.opts)
# cfg.freeze()
logger = setup_logger(distributed_rank=0)
logger.info("Loaded configuration file {}".format(args.cfg))
logger.info("Running with config:\n{}".format(cfg))
# absolute paths of model weights
cfg.MODEL.weights_encoder = os.path.join(
cfg.DIR, 'encoder_epoch_' + args.epoch + '.pth')
cfg.MODEL.weights_decoder = os.path.join(
cfg.DIR, 'decoder_epoch_' + args.epoch + '.pth')
assert os.path.exists(cfg.MODEL.weights_encoder) and \
os.path.exists(cfg.MODEL.weights_decoder), "checkpoint does not exitst!"
if not os.path.isdir(os.path.join(cfg.DIR, "result_"+cfg.TEST.checkpoint.split('.')[0])):
os.makedirs(os.path.join(cfg.DIR, "result_"+cfg.TEST.checkpoint.split('.')[0]))
main(cfg, args.gpu, args.epoch)