PaddleClas/tools/eval.py

80 lines
2.3 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
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
from ppcls.data import Reader
import program
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')
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()
2020-10-09 09:56:05 +08:00
2020-09-16 13:28:09 +08:00
top1_acc = program.run(valid_dataloader, config, net, None, None, 0,
'valid')
2020-10-18 01:27:36 +08:00
return_dict["top1_acc"] = top1_acc
return top1_acc
2020-04-09 02:16:30 +08:00
2020-04-09 02:16:30 +08:00
if __name__ == '__main__':
args = parse_args()
main(args)