README.md 3.4 KB
Newer Older
Z
Zeyu Chen 已提交
1
# ERNIE Classification
Z
Zeyu Chen 已提交
2

Z
Zeyu Chen 已提交
3 4 5 6 7
本示例将展示如何使用PaddleHub Finetune API利用ERNIE完成分类任务。

其中分类任务可以分为两大类

* 单句分类
Z
Zeyu Chen 已提交
8
  - 中文情感分析任务 ChnSentiCorp
Z
Zeyu Chen 已提交
9 10 11


* 句对分类
Z
Zeyu Chen 已提交
12 13
  - 语义相似度 LCQMC
  - 检索式问答任务 NLPCC-DBQA
Z
Zeyu Chen 已提交
14 15 16 17 18 19 20 21 22 23 24 25

## 如何开始Finetune

在完成安装PaddlePaddle与PaddleHub后,通过执行脚本`sh run_sentiment_cls.sh`即可开始使用ERNIE对ChnSentiCorp数据集进行Finetune。

其中脚本参数说明如下:

```bash
--batch_size: 批处理大小,请结合显存情况进行调整,若出现显存不足错误,请调低这一参数值
--weight_decay:
--checkpoint_dir: 模型保存路径,PaddleHub会自动保存验证集上表现最好的模型
--num_epoch: Finetune迭代的轮数
Z
Zeyu Chen 已提交
26
--max_seq_len: ERNIE模型使用的最大序列长度,最大不能超过512, 若出现显存不足错误,请调低这一参数
Z
Zeyu Chen 已提交
27 28 29 30 31 32 33 34 35
```

## 代码步骤

使用PaddleHub Finetune API进行Finetune可以分为一下4个步骤

### Step1: 加载预训练模型

```python
Z
Zeyu Chen 已提交
36 37
module = hub.Module(name="ernie")
inputs, outputs, program = module.context(trainable=True, max_seq_len=128)
Z
Zeyu Chen 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
```
其中最大序列长度`max_seq_len`是可以调整的参数,建议值128,根据任务文本长度不同可以调整该值,但最大不超过512。

如果想尝试BERT模型,例如BERT中文模型,只需要更换Module中的参数即可.
PaddleHub除了ERNIE,还提供以下BERT模型:

BERT模型名                         | PaddleHub Module name
---------------------------------- | :------:
BERT-Base, Uncased                 | bert_uncased_L-12_H-768_A-12
BERT-Large, Uncased                | bert_uncased_L-24_H-1024_A-16
BERT-Base, Cased                   | bert_cased_L-12_H-768_A-12
BERT-Large, Cased                  | bert_cased_L-24_H-1024_A-16
BERT-Base, Multilingual Cased      | bert_multi_cased_L-12_H-768_A-12
BERT-Base, Chinese                 | bert_chinese_L-12_H-768_A-12


```python
Z
Zeyu Chen 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
# 更换name参数即可无缝切换BERT中文模型
module = hub.Module(name="bert_chinese_L-12_H-768_A-12")
```

### Step2: 准备数据集并使用ClassifyReader读取数据
```python
with fluid.program_guard(program):
    label = fluid.layers.data(name="label", shape=[1], dtype='int64')

    pooled_output = outputs["pooled_output"]

    feed_list = [
        inputs["input_ids"].name, inputs["position_ids"].name,
        inputs["segment_ids"].name, inputs["input_mask"].name, label.name
    ]

    cls_task = hub.create_text_classification_task(
        pooled_output, label, num_classes=reader.get_num_labels())
```

### Step3: 构建网络并创建分类迁移任务
```python
with fluid.program_guard(program):
    label = fluid.layers.data(name="label", shape=[1], dtype='int64')

    pooled_output = outputs["pooled_output"]

    feed_list = [
        inputs["input_ids"].name, inputs["position_ids"].name,
        inputs["segment_ids"].name, inputs["input_mask"].name, label.name
    ]

    cls_task = hub.create_text_classification_task(
        pooled_output, label, num_classes=reader.get_num_labels())
```
### Step4:选择优化策略并开始Finetune

```python
strategy = hub.BERTFinetuneStrategy(
    weight_decay=0.01,
    learning_rate=5e-5,
    warmup_strategy="linear_warmup_decay",
)

config = hub.RunConfig(use_cuda=True, num_epoch=3, batch_size=32, strategy=strategy)

hub.finetune_and_eval(task=cls_task, data_reader=reader, feed_list=feed_list, config=config)
Z
Zeyu Chen 已提交
102
```