train.py 2.6 KB
Newer Older
0
0YuanZhang0 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#   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.
"""
SequenceTagging network structure
"""

from __future__ import division
from __future__ import print_function

import paddle.fluid as fluid
from paddle.fluid.optimizer import AdamOptimizer
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

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

0
0YuanZhang0 已提交
44
    labels = [Input([None, None], 'int64', name='labels')]
0
0YuanZhang0 已提交
45

0
seq_tag  
0YuanZhang0 已提交
46 47
    dataset = LacDataset(args)
    train_dataset = LacDataLoader(args, place, phase="train")
0
0YuanZhang0 已提交
48 49 50

    vocab_size = dataset.vocab_size
    num_labels = dataset.num_labels
0
seq_tag  
0YuanZhang0 已提交
51
    model = SeqTagging(args, vocab_size, num_labels, mode="train")
0
0YuanZhang0 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64

    optim = AdamOptimizer(
        learning_rate=args.base_learning_rate,
        parameter_list=model.parameters())

    model.prepare(
        optim,
        LacLoss(),
        ChunkEval(num_labels),
        inputs=inputs,
        labels=labels,
        device=args.device)

0
0YuanZhang0 已提交
65 66 67 68 69
    if args.init_from_checkpoint:
        model.load(args.init_from_checkpoint)

    if args.init_from_pretrain_model:
        model.load(args.init_from_pretrain_model, reset_optimizer=True)
0
0YuanZhang0 已提交
70

0
seq_tag  
0YuanZhang0 已提交
71
    model.fit(train_dataset.dataloader,
0
0YuanZhang0 已提交
72 73 74 75 76 77 78 79
              epochs=args.epoch,
              batch_size=args.batch_size,
              eval_freq=args.eval_freq,
              save_freq=args.save_freq,
              save_dir=args.save_dir)


if __name__ == '__main__':
0
0YuanZhang0 已提交
80 81 82
    args = PDConfig(yaml_file="sequence_tagging.yaml")
    args.build()
    args.Print()
L
LielinJiang 已提交
83

0
0YuanZhang0 已提交
84 85
    use_gpu = True if args.device == "gpu" else False
    check_gpu(use_gpu)
86 87
    # TODO: add check for 2.0.0-alpha0 if fluid.require_version support
    # check_version()
0
0YuanZhang0 已提交
88

0
0YuanZhang0 已提交
89
    main(args)