PaddleClas/tools/infer/infer.py

130 lines
4.1 KiB
Python
Raw Normal View History

2020-04-09 02:16:30 +08:00
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2020-09-07 10:12:39 +08:00
import paddle.fluid as fluid
import numpy as np
import argparse
import utils
import os
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '../..')))
2020-08-28 17:43:27 +08:00
2020-09-13 17:21:20 +08:00
from ppcls.modeling import architectures
from ppcls.utils.save_load import load_dygraph_pretrain
2020-04-09 02:16:30 +08:00
def parse_args():
def str2bool(v):
return v.lower() in ("true", "t", "1")
parser = argparse.ArgumentParser()
parser.add_argument("-i", "--image_file", type=str)
parser.add_argument("-m", "--model", type=str)
parser.add_argument("-p", "--pretrained_model", type=str)
parser.add_argument("--use_gpu", type=str2bool, default=True)
2020-08-28 17:43:27 +08:00
parser.add_argument("--load_static_weights", type=str2bool, default=True)
2020-04-09 02:16:30 +08:00
return parser.parse_args()
2020-08-28 17:43:27 +08:00
2020-04-09 02:16:30 +08:00
def create_operators():
size = 224
img_mean = [0.485, 0.456, 0.406]
img_std = [0.229, 0.224, 0.225]
img_scale = 1.0 / 255.0
decode_op = utils.DecodeImage()
resize_op = utils.ResizeImage(resize_short=256)
crop_op = utils.CropImage(size=(size, size))
normalize_op = utils.NormalizeImage(
scale=img_scale, mean=img_mean, std=img_std)
totensor_op = utils.ToTensor()
return [decode_op, resize_op, crop_op, normalize_op, totensor_op]
def preprocess(fname, ops):
2020-04-26 15:57:02 +08:00
data = open(fname, 'rb').read()
2020-04-09 02:16:30 +08:00
for op in ops:
data = op(data)
return data
def postprocess(outputs, topk=5):
output = outputs[0]
prob = np.array(output).flatten()
index = prob.argsort(axis=0)[-topk:][::-1].astype('int32')
return zip(index, prob[index])
2020-09-07 10:12:39 +08:00
def get_image_list(img_file):
imgs_lists = []
if img_file is None or not os.path.exists(img_file):
raise Exception("not found any img file in {}".format(img_file))
img_end = ['jpg', 'png', 'jpeg', 'JPEG', 'JPG', 'bmp']
if os.path.isfile(img_file) and img_file.split('.')[-1] in img_end:
imgs_lists.append(img_file)
elif os.path.isdir(img_file):
for single_file in os.listdir(img_file):
if single_file.split('.')[-1] in img_end:
imgs_lists.append(os.path.join(img_file, single_file))
if len(imgs_lists) == 0:
raise Exception("not found any img file in {}".format(img_file))
return imgs_lists
2020-04-09 02:16:30 +08:00
def main():
args = parse_args()
operators = create_operators()
2020-06-15 11:22:56 +08:00
# assign the place
2020-08-28 17:43:27 +08:00
if args.use_gpu:
gpu_id = fluid.dygraph.parallel.Env().dev_id
place = fluid.CUDAPlace(gpu_id)
else:
place = fluid.CPUPlace()
2020-06-15 11:22:56 +08:00
with fluid.dygraph.guard(place):
net = architectures.__dict__[args.model]()
2020-08-28 17:43:27 +08:00
load_dygraph_pretrain(net, args.pretrained_model,
args.load_static_weights)
2020-09-07 10:12:39 +08:00
image_list = get_image_list(args.image_file)
for idx, filename in enumerate(image_list):
data = preprocess(filename, operators)
data = np.expand_dims(data, axis=0)
data = fluid.dygraph.to_variable(data)
net.eval()
outputs = net(data)
2020-09-13 17:21:20 +08:00
if args.model == "GoogLeNet":
outputs = outputs[0]
else:
outputs = fluid.layers.softmax(outputs)
2020-09-07 10:12:39 +08:00
outputs = outputs.numpy()
probs = postprocess(outputs)
rank = 1
print("Current image file: {}".format(filename))
for idx, prob in probs:
print("\ttop{:d}, class id: {:d}, probability: {:.4f}".format(
rank, idx, prob))
rank += 1
2020-08-28 17:43:27 +08:00
return
2020-04-09 02:16:30 +08:00
if __name__ == "__main__":
main()