HuggingFace Pipeline:UserWarning:``grouped_entities''已弃用,并将在版本v5.0.0中删除。如何改善此警告?
我正在使用以下代码
!pip install datasets transformers[sentencepiece]
from transformers import pipeline
ner = pipeline("ner", grouped_entities=True, model='dbmdz/bert-large-cased-finetuned-conll03-english') #Named Entity Recognition (NER)
ner("My name is <Name> and I work at <Office> in <location>.")
,并收到以下警告。如何改善此警告?
在
版本v5.0.0,默认为
gentregation_strategy =“ gentregationstrategy.simple”
而不是。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据( 重点 是我的):
bool
,可选 ,默认为false) - 弃用,使用gentregation_strategy
而不是 。是否在预测中将与同一实体相对应的令牌分组。因此,您的代码行可能是:
According to [HuggingFace]: Pipelines - class transformers.TokenClassificationPipeline (emphasis is mine):
bool
, optional, defaults to False) - DEPRECATED, useaggregation_strategy
instead. Whether or not to group the tokens corresponding to the same entity together in the predictions or not.So, your line of code could be: