HuggingFace Pipeline:UserWarning:``grouped_entities''已弃用,并将在版本v5.0.0中删除。如何改善此警告?

发布于 2025-01-21 18:27:22 字数 488 浏览 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” 而不是。

I am using the following code

!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>.")

And I got the following warning. How to improve upon this warning?

UserWarning: grouped_entities is deprecated and will be removed in
version v5.0.0, defaulted to
aggregation_strategy="AggregationStrategy.SIMPLE" instead.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心的憧憬 2025-01-28 18:27:22

根据 重点 是我的):

  • grouped_entities bool 可选 ,默认为false) - 弃用,使用 gentregation_strategy 而不是 。是否在预测中将与同一实体相对应的令牌分组。

因此,您的代码行可能是:

ner = pipeline("ner", aggregation_strategy="simple", model="dbmdz/bert-large-cased-finetuned-conll03-english")  # Named Entity Recognition (NER)

According to [HuggingFace]: Pipelines - class transformers.TokenClassificationPipeline (emphasis is mine):

  • grouped_entities (bool, optional, defaults to False) - DEPRECATED, use aggregation_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:

ner = pipeline("ner", aggregation_strategy="simple", model="dbmdz/bert-large-cased-finetuned-conll03-english")  # Named Entity Recognition (NER)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文