eval.py 2.4 KB
Newer Older
0
0YuanZhang0 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   Copyright (c) 2019 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.
"""
0
seq_tag  
0YuanZhang0 已提交
15
SequenceTagging eval structure
0
0YuanZhang0 已提交
16 17 18 19 20 21 22
"""

from __future__ import division
from __future__ import print_function

import paddle.fluid as fluid
from paddle.fluid.layers.utils import flatten
23 24 25 26 27 28
from paddle.incubate.hapi.model import Input, set_device

from sequence_tagging import SeqTagging, LacLoss, ChunkEval
from reader import LacDataset, LacDataLoader
from utils.check import check_gpu, check_version
from utils.configure import PDConfig
0
0YuanZhang0 已提交
29 30 31 32 33 34


def main(args):
    place = set_device(args.device)
    fluid.enable_dygraph(place) if args.dynamic else None

0
seq_tag  
0YuanZhang0 已提交
35 36 37 38 39 40 41
    inputs = [
        Input(
            [None, None], 'int64', name='words'), Input(
                [None], 'int64', name='length'), Input(
                    [None, None], 'int64', name='target')
    ]
    labels = [Input([None, None], 'int64', name='labels')]
0
0YuanZhang0 已提交
42 43

    dataset = LacDataset(args)
0
seq_tag  
0YuanZhang0 已提交
44
    eval_dataset = LacDataLoader(args, place, phase="test")
0
0YuanZhang0 已提交
45 46 47

    vocab_size = dataset.vocab_size
    num_labels = dataset.num_labels
0
seq_tag  
0YuanZhang0 已提交
48
    model = SeqTagging(args, vocab_size, num_labels, mode="test")
0
0YuanZhang0 已提交
49 50

    model.mode = "test"
0
seq_tag  
0YuanZhang0 已提交
51 52 53 54 55
    model.prepare(
        metrics=ChunkEval(num_labels),
        inputs=inputs,
        labels=labels,
        device=place)
0
0YuanZhang0 已提交
56 57
    model.load(args.init_from_checkpoint, skip_mismatch=True)

L
LielinJiang 已提交
58 59
    eval_result = model.evaluate(
        eval_dataset.dataloader, batch_size=args.batch_size)
0
0YuanZhang0 已提交
60 61 62
    print("precison: %.5f" % (eval_result["precision"][0]))
    print("recall: %.5f" % (eval_result["recall"][0]))
    print("F1: %.5f" % (eval_result["F1"][0]))
0
0YuanZhang0 已提交
63 64


0
seq_tag  
0YuanZhang0 已提交
65
if __name__ == '__main__':
0
0YuanZhang0 已提交
66 67 68 69 70 71
    args = PDConfig(yaml_file="sequence_tagging.yaml")
    args.build()
    args.Print()

    use_gpu = True if args.device == "gpu" else False
    check_gpu(use_gpu)
72 73
    # TODO: add check for 2.0.0-alpha0 if fluid.require_version support
    # check_version()
0
0YuanZhang0 已提交
74
    main(args)