你好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行
1条答案
按热度按时间brjng4g31#
我为这个问题提供了更正,并在PR #13436中发现了另外两个小错误。
问候
马丁