eb1911
收藏资源简介:
本数据集是1911年第11版《大英百科全书》的完整语料库,包含约37,000篇文章的清洁Markdown文本,并重建了三个知识图谱:交叉引用图、主题分类法和作者关系图。这些图谱基于印刷版分类索引和贡献者表格重建,而非原始文本中存在。数据集文件包括articles.jsonl(每篇文章的文本、元数据、章节、分类、交叉引用和贡献者信息)、xref_edges.jsonl(交叉引用图边)、topics.json(主题分类节点)、contributors.json(作者关系节点)以及清单和模式文件。文章记录包含ID、标题、类型、卷号、字数、分类、章节、贡献者、图像引用、交叉引用和Markdown内容等字段。数据集适用于文本检索、问答和文本生成任务,尤其支持GraphRAG等知识增强应用。需要注意的是,该数据集是1911年的历史文献,其科学、地理和政治内容已过时,可能包含当时共识但现代视为冒犯的观点,应作为历史文档谨慎使用。文本来源为Wikisource和Internet Archive的公共领域转录,项目贡献了Markdown渲染和知识图谱重建,采用CC-BY-SA 4.0许可证。
This dataset is the complete corpus of the 11th edition of Encyclopædia Britannica published in 1911, containing cleaned Markdown text of approximately 37,000 articles, and reconstructs three knowledge graphs: the cross-reference graph, the subject taxonomy, and the author relationship graph. These graphs are reconstructed based on the classification index and contributor tables of the print edition, rather than existing in the original text. The dataset files include articles.jsonl (containing the text, metadata, sections, categories, cross-references and contributor information of each article), xref_edges.jsonl (edges of the cross-reference graph), topics.json (subject taxonomy nodes), contributors.json (author relationship nodes), as well as manifest and schema files. Article records include fields such as ID, title, type, volume number, word count, categories, sections, contributors, image citations, cross-references and Markdown content. This dataset is applicable to tasks such as text retrieval, question answering and text generation, and particularly supports knowledge-enhanced applications including GraphRAG. It should be noted that this dataset is a historical document from 1911, whose scientific, geographical and political content is outdated, and may contain views that were widely accepted at the time but are considered offensive by modern standards. It should be used cautiously as a historical document. The text sources are public domain transcriptions from Wikisource and the Internet Archive. The project contributed Markdown rendering and knowledge graph reconstruction, and the dataset is licensed under CC-BY-SA 4.0.
数据集概述:Encyclopædia Britannica, 11th Edition (1911) — Full Corpus with Knowledge Graphs
基本信息
- 数据集名称:Encyclopædia Britannica, 11th Edition (1911) — Full Corpus with Knowledge Graphs
- 许可证:CC-BY-SA 4.0
- 语言:英语
- 大小:10K < n < 100K 条记录
- 标签:百科全书、历史、参考、知识图谱、GraphRAG、RAG
- 任务类别:文本检索、问答、文本生成
数据集内容
- 包含1911年版《大英百科全书》全部约37,000篇文章,以清晰的Markdown格式提供。
- 除文本外,还包含从该版本及其索引卷重建的三个知识图谱:
- 交叉引用图(
xref_edges.jsonl):每篇文章与其提及的其他文章之间的链接,已解析和消歧(如区分“苏黎世市”与“苏黎世州”)。 - 主题分类法(
topics.json):所有文章根据第29卷印刷分类索引归入该版本自己的主题层级体系(例如“动物学”下的所有子主题)。 - 作者关系图(
contributors.json):撰稿学者名单及其著作,包括将首字母缩写(如“R. N. B.”)解析为具名学者及其资质。
- 交叉引用图(
文件结构
| 文件 | 说明 |
|---|---|
articles.jsonl |
每行一篇文章:Markdown文本、元数据、章节、分类、交叉引用和贡献者信息 |
xref_edges.jsonl |
交叉引用图的边:每条记录为 {from, to, display} |
topics.json |
主题分类法:节点包括 {id, name, path, parent, articles} |
contributors.json |
作者关系图:每位学者及其贡献的文章ID |
manifest.json |
版本、精确计数和SHA-256校验和 |
schema.json |
articles.jsonl 记录的JSON Schema |
LICENSE |
许可条款(CC-BY-SA 4.0)和署名要求 |
文章记录示例 json { "id": "21-0935-poland-POLAND", "title": "POLAND", "type": "article", "volume": 21, "page_start": 902, "word_count": 42817, "url": "https://www.britannica11.org/article/21-0935-poland-POLAND", "categories": ["history/europe-(continental)/general"], "sections": [{"title": "Polish Literature", "slug": "polish-literature", "level": 1}], "contributors": [{"initials": "R. N. B.", "name": "Robert Nisbet Bain"}], "images": [{"file": "..."}], "xrefs": [{"to": "21-0962-poland-russian-POLAND__RUSSIAN", "display": "Poland, Russian"}], "markdown": "(Polish Polska …)" }
- 图片以引用(
file字段)形式存储,不包含二进制数据。
知识图谱的价值
- 本数据集不同于现有的扁平OCR版本,重建了印刷版中不直接存在的结构:
- 交叉引用图:可用于GraphRAG(图检索增强生成)。
- 主题分类法:支持按子主题范围检索(如“搜索所有属于动物学的文章”)。
- 作者关系图:提供1911年学术界的群体传记学信息,以及权威性/来源追溯信号。
加载方式
-
通用加载(JSON Lines): python import json articles = [json.loads(l) for l in open("articles.jsonl", encoding="utf-8")] edges = [json.loads(l) for l in open("xref_edges.jsonl", encoding="utf-8")] topics = json.load(open("topics.json", encoding="utf-8")) authors = json.load(open("contributors.json", encoding="utf-8"))
-
使用Hugging Face Datasets库: python from datasets import load_dataset ds = load_dataset("britannica11/eb1911", data_files="articles.jsonl", split="train")
内容说明
- 本数据集是1911年的历史文献,其科学内容已过时,地理和政治描述已不存在,且包含当时教育界共识中如今被视为冒犯的种族、帝国等观点。
- 它作为历史文档被保存和分发,而非当前参考源。如用于训练或基础模型,需谨慎处理。
数据来源:文本源自维基文库和互联网档案馆的1911年《大英百科全书》转录,知识图谱从第29卷印刷分类索引和各卷撰稿人表格重建。完整方法论见 britannica11.org/about。
许可与署名:在CC-BY-SA 4.0下发布。请署名:
Encyclopædia Britannica, 11th Edition corpus — britannica11.org — CC-BY-SA 4.0.




