senta_finetune.py 1.9 KB
Newer Older
W
wuzewu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import argparse
import ast

import paddle.fluid as fluid
import paddlehub as hub

# yapf: disable
parser = argparse.ArgumentParser(__doc__)
parser.add_argument("--num_epoch", type=int, default=3, help="Number of epoches for fine-tuning.")
parser.add_argument("--use_gpu", type=ast.literal_eval, default=False, help="Whether use GPU for finetuning, input should be True or False")
parser.add_argument("--checkpoint_dir", type=str, default=None, help="Directory to model checkpoint")
parser.add_argument("--batch_size", type=int, default=32, help="Total examples' number in batch for training.")
args = parser.parse_args()
# yapf: enable.

if __name__ == '__main__':
    # Step1: load Paddlehub senta pretrained model
Z
Zeyu Chen 已提交
18
    module = hub.Module(name="senta_bilstm")
W
wuzewu 已提交
19 20 21 22 23
    inputs, outputs, program = module.context(trainable=True)

    # Step2: Download dataset and use TextClassificationReader to read dataset
    dataset = hub.dataset.ChnSentiCorp()

Z
Zeyu Chen 已提交
24
    reader = hub.reader.LACClassifyReader(
W
wuzewu 已提交
25 26
        dataset=dataset, vocab_path=module.get_vocab_path())

Z
Zeyu Chen 已提交
27
    sent_feature = outputs["sentence_feature"]
W
wuzewu 已提交
28 29 30

    # Define a classfication finetune task by PaddleHub's API
    cls_task = hub.create_text_cls_task(
Z
Zeyu Chen 已提交
31
        feature=sent_feature, num_classes=dataset.num_labels)
W
wuzewu 已提交
32 33 34 35 36

    # Setup feed list for data feeder
    # Must feed all the tensor of senta's module need
    feed_list = [inputs["words"].name, cls_task.variable('label').name]

Z
Zeyu Chen 已提交
37
    strategy = hub.finetune.strategy.AdamWeightDecayStrategy(
Z
Zeyu Chen 已提交
38
        learning_rate=1e-4, weight_decay=0.01, warmup_proportion=0.05)
Z
Zeyu Chen 已提交
39

W
wuzewu 已提交
40 41 42 43 44
    config = hub.RunConfig(
        use_cuda=args.use_gpu,
        num_epoch=args.num_epoch,
        batch_size=args.batch_size,
        checkpoint_dir=args.checkpoint_dir,
Z
Zeyu Chen 已提交
45
        strategy=strategy)
W
wuzewu 已提交
46 47 48 49 50

    # Finetune and evaluate by PaddleHub's API
    # will finish training, evaluation, testing, save model automatically
    hub.finetune_and_eval(
        task=cls_task, data_reader=reader, feed_list=feed_list, config=config)