加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
predict.py 1002 Bytes
一键复制 编辑 原始数据 按行查看 历史
cale 提交于 2023-03-01 07:06 . 主要文件
from config import *
from utils import *
from model import *
def predict(sents):
id2label, _ = get_label()
model = torch.load(MODEL_DIR + '0.pth', map_location=DEVICE)
tokenizer = AutoTokenizer.from_pretrained('bert-base-chinese')
data = tokenizer.batch_encode_plus(
sents,
add_special_tokens=True,
truncation=True,
padding='max_length',
max_length=30,
return_tensors='pt',
return_attention_mask=True,
)
input_ids = data['input_ids']
attention_mask = data['attention_mask']
model.eval()
pre = model(input_ids, attention_mask)
pre = pre.argmax(dim=1)
pre_list = [id2label[i] for i in pre]
print(pre_list)
if __name__ == '__main__':
texts = [
'小城不大,风景如画:边境小镇室韦的蝶变之路',
'天问一号发射两周年,传回火卫一高清影像',
'林志颖驾驶特斯拉自撞路墩起火,车头烧成废铁',
]
predict(texts)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化