我可以使用拥抱脸的蒙版填充管道来预测句子中的 1 个蒙面标记,使用以下代码:
!pip install -q transformers
from __future__ import print_function
import ipywidgets as widgets
from transformers import pipeline
nlp_fill = pipeline('fill-mask')
nlp_fill("I am going to guess <mask> in this sentence")
但是,如果我想预测 2 个蒙面标记,是否有人对执行此操作的最佳方法有意见?例如,如果句子是相反的"I am going to <mask> <mask> in this sentence"
?
如果我尝试将这个确切的句子放入 nlp_fill 我会收到错误"ValueError: only one element tensors can be converted to Python scalars"
,因此它不会自动工作。
任何帮助将非常感激!