Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -102,7 +102,7 @@ tags:
|
|
| 102 |
|
| 103 |
# Shamela 4 — Full Islamic Library Corpus
|
| 104 |
|
| 105 |
-
A complete extraction of **al-Maktaba al-Shamela (الشاملة) v4**, containing **8,589 books** across **40 categories** of classical Islamic sciences. Extracted from the
|
| 106 |
|
| 107 |
## Dataset Structure
|
| 108 |
|
|
@@ -273,7 +273,7 @@ All major Islamic disciplines:
|
|
| 273 |
from datasets import load_dataset
|
| 274 |
|
| 275 |
# Load a single book by filtering
|
| 276 |
-
ds = load_dataset("
|
| 277 |
book_1 = ds.filter(lambda x: x["book_id"] == 1)
|
| 278 |
|
| 279 |
# Or stream individual JSONL files directly
|
|
|
|
| 102 |
|
| 103 |
# Shamela 4 — Full Islamic Library Corpus
|
| 104 |
|
| 105 |
+
A complete extraction of **al-Maktaba al-Shamela (الشاملة) v4**, containing **8,589 books** across **40 categories** of classical Islamic sciences. Extracted from the original Lucene + Sqlite Shamela DB on 2026-04-26 with ~7.6 million pages and ~19 GB of Arabic text.
|
| 106 |
|
| 107 |
## Dataset Structure
|
| 108 |
|
|
|
|
| 273 |
from datasets import load_dataset
|
| 274 |
|
| 275 |
# Load a single book by filtering
|
| 276 |
+
ds = load_dataset("AuthenticIlm/Shamela4_Full_DB", split="full")
|
| 277 |
book_1 = ds.filter(lambda x: x["book_id"] == 1)
|
| 278 |
|
| 279 |
# Or stream individual JSONL files directly
|