spaCy 代码示例不一致性问题,API文档中的Span.lemma_

tvmytwxo  于 3个月前  发布在  其他
关注(0)|答案(1)|浏览(51)

你好spaCy团队,
我发现文档中有一个细微的差异。
在API文档中,Span 的属性 lemma_ 描述如下:
跨度的词元。等同于 "".join(token.text_with_ws for token in span)

建议的更改

等效的代码示例不应在推导式中包含 token.text_with_ws ,而应包含 token.lemma_ + token.whitespace_ :

- | `lemma_`       | The span's lemma. Equivalent to `"".join(token.text_with_ws for token in span)`. ~~str~~                                      |
+ | `lemma_`       | The span's lemma. Equivalent to `"".join(token.lemma_ + token.whitespace_ for token in span).strip()`. ~~str~~                |

这个问题与哪个页面或部分相关?

  • 文档:API文档/ Span
  • 代码:website/docs/api/span.mdx / 第564行
brjng4g3

brjng4g31#

我为这个问题提供了更正,并在PR #13436中发现了另外两个小错误。
问候
马丁

相关问题