-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathinference.py
143 lines (116 loc) · 4.63 KB
/
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
# ************************************************************
# Author : Bumsoo Kim, 2018
# Github : https://github.com/meliketoy/gradcam.pytorch
#
# Korea University, Data-Mining Lab
# Deep Convolutional Network Fine tuning Implementation
#
# Description : inference.py
# The main code for inference test phase of trained model.
# ***********************************************************
from __future__ import print_function, division
import torch
import torch.nn as nn
import torch.optim as optim
import torch.backends.cudnn as cudnn
import numpy as np
import config as cf
import torchvision
import time
import copy
import os
import sys
import argparse
import csv
import operator
from torchvision import datasets, models, transforms
from networks import *
from torch.autograd import Variable
from PIL import Image
parser = argparse.ArgumentParser(description='Pytorch Cell Classifier Training')
parser.add_argument('--net_type', default='resnet', type=str, help='model')
parser.add_argument('--depth', default=50, type=int, help='depth of model')
args = parser.parse_args()
# Phase 1 : Data Upload
print('\n[Phase 1] : Data Preperation')
data_dir = cf.test_dir
trainset_dir = cf.data_base.split("/")[-1] + os.sep
print("| Preparing %s dataset..." %(cf.test_dir.split("/")[-1]))
use_gpu = torch.cuda.is_available()
dsets = datasets.ImageFolder(data_dir, None)
# Set the classes of labels
H = datasets.ImageFolder(os.path.join(cf.aug_base, 'train'))
dset_classes = H.classes
print("| Inferencing for %d classes" %len(dset_classes))
# Phase 2 : Model setup
print('\n[Phase 2] : Model setup')
def getNetwork(args):
if (args.net_type == 'alexnet'):
file_name = 'alexnet'
elif (args.net_type == 'vggnet'):
file_name = 'vgg-%s' %(args.depth)
elif (args.net_type == 'densenet'):
file_name = 'densenet-%s' %(args.depth)
elif (args.net_type == 'resnet'):
file_name = 'resnet-%s' %(args.depth)
else:
print('[Error]: Network should be either [alexnet / vggnet / resnet]')
sys.exit(1)
return file_name
def softmax(x):
return np.exp(x) / np.sum(np.exp(x), axis=0)
print("| Loading checkpoint model for inference phase...")
assert os.path.isdir('checkpoint'), '[Error]: No checkpoint directory found!'
assert os.path.isdir('checkpoint/'+trainset_dir), '[Error]: No model has been trained on the dataset!'
file_name = getNetwork(args)
checkpoint = torch.load('./checkpoint/'+trainset_dir+file_name+'.t7')
model = checkpoint['model']
if use_gpu:
model.cuda()
cudnn.benchmark = True
model.eval()
sample_input = Variable(torch.randn(1,3,224,224), volatile=True)
if use_gpu:
sample_input = sample_input.cuda()
print("\n[Phase 3] : Score Inference")
def is_image(f):
return f.endswith(".png") or f.endswith(".jpg")
test_transform = transforms.Compose([
transforms.Scale(224),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize(cf.mean, cf.std)
])
if not os.path.isdir('result'):
os.mkdir('result')
output_file = "./result/"+cf.test_dir.split("/")[-1]+"_inference.csv"
with open(output_file, 'wb') as csvfile:
fields = ['file_name', 'prediction']
writer = csv.DictWriter(csvfile, fieldnames=fields)
for subdir, dirs, files in os.walk(data_dir):
cor = 0 # number of correct answers
tot = 0
for f in files:
file_path = subdir + os.sep + f
if (is_image(f)):
image = Image.open(file_path)#.convert('RGB')
if test_transform is not None:
image = test_transform(image)
inputs = image
inputs = Variable(inputs, volatile=True)
if use_gpu:
inputs = inputs.cuda()
inputs = inputs.view(1, inputs.size(0), inputs.size(1), inputs.size(2)) # add batch dim in the front
outputs = model(inputs)
softmax_res = softmax(outputs.data.cpu().numpy()[0])
index, score = max(enumerate(softmax_res), key=operator.itemgetter(1))
# sorted_lst = sorted(zip(softmax_res, dset_classes), reverse=True)[:3] # Get Top-3 Results
if not (dset_classes[index] in file_path.split("/")[-1]):
print(file_path + "," + str(dset_classes[index]) + ": " + str(score))
"""
if (file_path.split("/")[-2] != dset_classes[index]):
print(file_path + "\t" + str(dset_classes[index]) + "\t" + str(score)) # print wrong answers.
else:
cor += 1
"""
writer.writerow({'file_name': file_path, 'prediction':dset_classes[index]}); tot += 1