我在这篇 Medium 帖子之后训练了自己的 BERT NER:https://medium.com/@yingbiao/ner-with-bert-in-action-936ff275bc73
我将模型保存到光盘并成功加载。
model = BertForTokenClassification.from_pretrained(bert_out_address, num_labels=len(tag2idx))
model.eval() 有效:
model.eval()
我是 BERT 和变压器库的新手。我希望有类似的东西
model.predict('Hello I am an example sentence')
会向我展示公认的实体。
我也试过:
input_ids = torch.tensor([tokenizer.encode("Here is some text to encode")])
output = model(input_ids)
其中输出给了我一个很大的张量,我不知道如何处理它。
我现在如何使用模型来预测例句中的实体?我应该如何处理输出?
谢谢!