跳至主要内容

CoNLL-U

CoNLL-U 是 CoNLL-X 格式的修订版本。注释以纯文本文件(UTF-8,规范化为 NFC,仅使用 LF 字符作为换行符,包括文件末尾的 LF 字符)编码,并具有三种类型的行

  • 词行包含一个词/标记的注释,包含 10 个字段,用单个制表符分隔;见下文。
  • 空行表示句子边界。
  • 以井号(#)开头的注释行。

这是一个加载 CoNLL-U 格式文件的示例。整个文件被视为一个文档。示例数据(conllu.conllu)基于标准 UD/CoNLL-U 示例之一。

from langchain_community.document_loaders import CoNLLULoader
API 参考:CoNLLULoader
loader = CoNLLULoader("example_data/conllu.conllu")
document = loader.load()
document
[Document(page_content='They buy and sell books.', metadata={'source': 'example_data/conllu.conllu'})]

此页面是否有用?


您也可以留下详细的反馈 在 GitHub 上.