File size: 1,568 Bytes
c061652
 
 
 
 
 
 
 
e0e0ae3
a66b1bd
 
 
 
 
 
 
 
 
 
 
 
 
 
e0e0ae3
 
a66b1bd
e0e0ae3
a66b1bd
 
 
 
 
e0e0ae3
a66b1bd
e0e0ae3
a66b1bd
 
 
 
 
e0e0ae3
a66b1bd
e0e0ae3
a66b1bd
e0e0ae3
a66b1bd
e0e0ae3
a66b1bd
e0e0ae3
a66b1bd
 
 
 
 
 
 
 
e0e0ae3
a66b1bd
 
 
e0e0ae3
5a06a88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
license: cc-by-nc-sa-4.0
task_categories:
- text-generation
language:
- en
size_categories:
- 1M<n<10M
---

## 📚 Dataset Composition

OmniBook is built around **general culture** and includes:

- **Complete works** 
- **Historical scientific texts** 
- **Philosophy and political thought** 
- **Poetry, drama, and essays** 

All texts are **unmodified** from their original Project Gutenberg sources except for:
- Removal of boilerplate headers/footers
- Deduplication of near‑identical editions

---

## 🧠 Key Features

### High Fidelity
- **No OCR noise** – texts are manually proofread by Project Gutenberg volunteers.
- **Original punctuation and emphasis** preserved (Victorian‑era italics, archaic spelling where intentional).

---

## 📊 Example Record

```json
{
  "text": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife..."
}
```

**🤝 How to Use This Dataset**

```python

from datasets import load_dataset

dataset = load_dataset("OvercastLab/OmniBook", split="train")

```
Or stream directly (recommended for large‑scale training):
```python
dataset = load_dataset("OvercastLab/OmniBook", streaming=True)
for example in dataset:
    text = example["text"]
    # your training loop
```

**📈 Future Plans**
- Add classical Greek and Latin works (in translation)
- Expand with early 20th‑century scientific journals (public domain)

*OmniBook is maintained by **OvercastLab**. For questions or contributions, please open an issue on the Hugging Face repository.*