PaddleClas/tools/eval.py

114 lines
3.5 KiB
Python
Raw Normal View History

2020-04-19 19:00:25 +08:00
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
2020-04-09 02:16:30 +08:00
#
2020-04-19 19:00:25 +08:00
# 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
2020-04-09 02:16:30 +08:00
#
# http://www.apache.org/licenses/LICENSE-2.0
#
2020-04-19 19:00:25 +08:00
# 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-04-09 02:16:30 +08:00
2020-09-16 13:28:09 +08:00
import paddle
2021-03-30 16:02:32 +08:00
import paddle.nn.functional as F
2020-09-16 15:26:21 +08:00
import argparse
2020-04-19 19:00:25 +08:00
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-04-09 02:16:30 +08:00
2020-09-16 15:26:21 +08:00
from ppcls.utils import logger
from ppcls.utils.save_load import init_model
from ppcls.utils.config import get_config
2021-03-30 16:02:32 +08:00
from ppcls.utils import multi_hot_encode
from ppcls.utils import accuracy_score
from ppcls.utils import mean_average_precision
from ppcls.utils import precision_recall_fscore
2020-09-16 15:26:21 +08:00
from ppcls.data import Reader
import program
2021-03-30 16:02:32 +08:00
import numpy as np
2020-04-09 02:16:30 +08:00
def parse_args():
parser = argparse.ArgumentParser("PaddleClas eval script")
parser.add_argument(
'-c',
'--config',
type=str,
2020-04-19 19:00:25 +08:00
default='./configs/eval.yaml',
2020-04-09 02:16:30 +08:00
help='config file path')
parser.add_argument(
'-o',
'--override',
action='append',
default=[],
help='config options to be overridden')
args = parser.parse_args()
return args
2020-10-18 01:27:36 +08:00
def main(args, return_dict={}):
config = get_config(args.config, overrides=args.override, show=True)
config.mode = "valid"
# assign place
use_gpu = config.get("use_gpu", True)
place = paddle.set_device('gpu' if use_gpu else 'cpu')
2021-03-30 16:02:32 +08:00
multilabel = config.get("multilabel", False)
2020-09-13 17:57:23 +08:00
trainer_num = paddle.distributed.get_world_size()
use_data_parallel = trainer_num != 1
2020-10-30 21:02:49 +08:00
config["use_data_parallel"] = use_data_parallel
2020-09-13 17:57:23 +08:00
if config["use_data_parallel"]:
paddle.distributed.init_parallel_env()
2020-09-13 17:57:23 +08:00
net = program.create_model(config.ARCHITECTURE, config.classes_num)
2020-10-30 21:02:49 +08:00
if config["use_data_parallel"]:
net = paddle.DataParallel(net)
2020-10-30 21:02:49 +08:00
2020-09-13 17:57:23 +08:00
init_model(config, net, optimizer=None)
2020-10-09 09:56:05 +08:00
valid_dataloader = Reader(config, 'valid', places=place)()
2020-09-13 17:57:23 +08:00
net.eval()
with paddle.no_grad():
2021-03-30 16:02:32 +08:00
if not multilabel:
top1_acc = program.run(valid_dataloader, config, net, None, None, 0,
'valid')
return_dict["top1_acc"] = top1_acc
return top1_acc
else:
all_outs = []
targets = []
for idx, batch in enumerate(valid_dataloader()):
feeds = program.create_feeds(batch, False, config.classes_num, multilabel)
out = net(feeds["image"])
out = F.sigmoid(out)
use_distillation = config.get("use_distillation", False)
if use_distillation:
out = out[1]
all_outs.extend(list(out.numpy()))
targets.extend(list(feeds["label"].numpy()))
all_outs = np.array(all_outs)
targets = np.array(targets)
mAP = mean_average_precision(all_outs, targets)
return_dict["mean average precision"] = mAP
return mAP
2020-04-09 02:16:30 +08:00
2020-04-09 02:16:30 +08:00
if __name__ == '__main__':
args = parse_args()
2021-03-30 16:02:32 +08:00
return_dict = {}
main(args, return_dict)
print(return_dict)