val.py 3.1 KB
Newer Older
C
chenguowei01 已提交
1
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
C
chenguowei01 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#
# 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.

import argparse

import paddle.fluid as fluid
C
chenguowei01 已提交
18
from paddle.fluid.dygraph.parallel import ParallelEnv
C
chenguowei01 已提交
19

C
chenguowei01 已提交
20 21 22 23 24
from dygraph.datasets import DATASETS
import dygraph.transforms as T
from dygraph.models import MODELS
from dygraph.utils import get_environ_info
from dygraph.core import evaluate
C
chenguowei01 已提交
25 26 27


def parse_args():
C
chenguowei01 已提交
28
    parser = argparse.ArgumentParser(description='Model evaluation')
C
chenguowei01 已提交
29 30

    # params of model
C
chenguowei01 已提交
31 32 33
    parser.add_argument(
        '--model_name',
        dest='model_name',
R
update  
root 已提交
34 35
        help='Model type for evaluation, which is one of {}'.format(
            str(list(MODELS.keys()))),
C
chenguowei01 已提交
36 37
        type=str,
        default='UNet')
C
chenguowei01 已提交
38 39

    # params of dataset
C
chenguowei01 已提交
40
    parser.add_argument(
C
chenguowei01 已提交
41 42
        '--dataset',
        dest='dataset',
C
chenguowei01 已提交
43 44
        help="The dataset you want to evaluation, which is one of {}".format(
            str(list(DATASETS.keys()))),
C
chenguowei01 已提交
45
        type=str,
C
chenguowei01 已提交
46
        default='OpticDiscSeg')
C
chenguowei01 已提交
47 48 49 50 51 52
    parser.add_argument(
        '--dataset_root',
        dest='dataset_root',
        help="dataset root directory",
        type=str,
        default=None)
C
chenguowei01 已提交
53 54

    # params of evaluate
C
chenguowei01 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67
    parser.add_argument(
        "--input_size",
        dest="input_size",
        help="The image size for net inputs.",
        nargs=2,
        default=[512, 512],
        type=int)
    parser.add_argument(
        '--model_dir',
        dest='model_dir',
        help='The path of model for evaluation',
        type=str,
        default=None)
C
chenguowei01 已提交
68 69 70 71 72

    return parser.parse_args()


def main(args):
C
chenguowei01 已提交
73
    env_info = get_environ_info()
C
chenguowei01 已提交
74 75 76
    places = fluid.CUDAPlace(ParallelEnv().dev_id) \
        if env_info['place'] == 'cuda' and fluid.is_compiled_with_cuda() \
        else fluid.CPUPlace()
C
chenguowei01 已提交
77

C
chenguowei01 已提交
78
    if args.dataset not in DATASETS:
C
chenguowei01 已提交
79
        raise Exception('`--dataset` is invalid. it should be one of {}'.format(
C
chenguowei01 已提交
80 81
            str(list(DATASETS.keys()))))
    dataset = DATASETS[args.dataset]
C
chenguowei01 已提交
82

C
chenguowei01 已提交
83 84
    with fluid.dygraph.guard(places):
        eval_transforms = T.Compose([T.Resize(args.input_size), T.Normalize()])
C
chenguowei01 已提交
85 86 87 88
        eval_dataset = dataset(
            dataset_root=args.dataset_root,
            transforms=eval_transforms,
            mode='val')
C
chenguowei01 已提交
89

C
chenguowei01 已提交
90 91
        if args.model_name not in MODELS:
            raise Exception(
C
chenguowei01 已提交
92
                '`--model_name` is invalid. it should be one of {}'.format(
C
chenguowei01 已提交
93 94
                    str(list(MODELS.keys()))))
        model = MODELS[args.model_name](num_classes=eval_dataset.num_classes)
C
chenguowei01 已提交
95

C
chenguowei01 已提交
96 97 98 99
        evaluate(
            model,
            eval_dataset,
            model_dir=args.model_dir,
100
            num_classes=eval_dataset.num_classes)
C
chenguowei01 已提交
101 102 103 104


if __name__ == '__main__':
    args = parse_args()
C
chenguowei01 已提交
105
    main(args)