99 lines
3.7 KiB
Python
99 lines
3.7 KiB
Python
# Copyright (c) 2022 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.
|
|
|
|
import numpy as np
|
|
import paddle
|
|
import paddle.nn.functional as F
|
|
|
|
from paddlenlp.utils.log import logger
|
|
|
|
|
|
@paddle.no_grad()
|
|
def evaluate(model, criterion, metric, data_loader):
|
|
"""
|
|
Given a dataset, it evaluates model and computes the metric.
|
|
Args:
|
|
model(obj:`paddle.nn.Layer`): A model to classify texts.
|
|
criterion(obj:`paddle.nn.Layer`): It can compute the loss.
|
|
metric(obj:`paddle.metric.Metric`): The evaluation metric.
|
|
data_loader(obj:`paddle.io.DataLoader`): The dataset loader which generates batches.
|
|
"""
|
|
|
|
model.eval()
|
|
metric.reset()
|
|
losses = []
|
|
for batch in data_loader:
|
|
labels = batch.pop("labels")
|
|
logits = model(**batch)
|
|
loss = criterion(logits, labels)
|
|
probs = F.sigmoid(logits)
|
|
losses.append(loss.numpy())
|
|
metric.update(probs, labels)
|
|
|
|
micro_f1_score, macro_f1_score = metric.accumulate()
|
|
logger.info(
|
|
"eval loss: %.5f, micro f1 score: %.5f, macro f1 score: %.5f"
|
|
% (np.mean(losses), micro_f1_score, macro_f1_score)
|
|
)
|
|
model.train()
|
|
metric.reset()
|
|
|
|
return micro_f1_score, macro_f1_score
|
|
|
|
|
|
def preprocess_function(examples, tokenizer, max_seq_length, label_nums, is_test=False):
|
|
"""
|
|
Builds model inputs from a sequence for sequence classification tasks
|
|
by concatenating and adding special tokens.
|
|
|
|
Args:
|
|
examples(obj:`list[str]`): List of input data, containing text and label if it have label.
|
|
tokenizer(obj:`PretrainedTokenizer`): This tokenizer inherits from :class:`~paddlenlp.transformers.PretrainedTokenizer`
|
|
which contains most of the methods. Users should refer to the superclass for more information regarding methods.
|
|
max_seq_length(obj:`int`): The maximum total input sequence length after tokenization.
|
|
Sequences longer than this will be truncated, sequences shorter will be padded.
|
|
label_nums(obj:`int`): The number of the labels.
|
|
Returns:
|
|
result(obj:`dict`): The preprocessed data including input_ids, token_type_ids, labels.
|
|
"""
|
|
result = tokenizer(text=examples["sentence"], max_seq_len=max_seq_length)
|
|
# One-Hot label
|
|
if not is_test:
|
|
result["labels"] = [float(1) if i in examples["label"] else float(0) for i in range(label_nums)]
|
|
return result
|
|
|
|
|
|
def read_local_dataset(path, label_list=None, is_test=False):
|
|
"""
|
|
Read dataset
|
|
"""
|
|
with open(path, "r", encoding="utf-8") as f:
|
|
for line in f:
|
|
if is_test:
|
|
items = line.strip().split("\t")
|
|
sentence = "".join(items)
|
|
yield {"sentence": sentence}
|
|
else:
|
|
items = line.strip().split("\t")
|
|
if len(items) == 0:
|
|
continue
|
|
elif len(items) == 1:
|
|
sentence = items[0]
|
|
labels = []
|
|
else:
|
|
sentence = "".join(items[:-1])
|
|
label = items[-1]
|
|
labels = [label_list[l] for l in label.split(",")]
|
|
yield {"sentence": sentence, "label": labels}
|