ia-espirita commited on
Commit
812a42d
·
verified ·
1 Parent(s): f769fd9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +54 -25
README.md CHANGED
@@ -21,19 +21,33 @@ tags:
21
  - el-libro-de-los-espiritus
22
  - portuguese
23
  - brazilian
 
24
  - doctrine
25
  - reincarnation
26
  - mediumship
27
- pretty_name: "O Livro dos Espíritos — Allan Kardec (1,019 Questions)"
 
 
28
  size_categories:
29
- - 1K-10K
30
  ---
31
 
32
  # 📖 O Livro dos Espíritos — Allan Kardec
33
 
34
  **The Spirits' Book** | **Le Livre des Esprits** | **El Libro de los Espíritus**
35
 
36
- The complete **1,019 questions and answers** from Allan Kardec's foundational work, structured as machine-readable JSON.
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  ## About the Work
39
 
@@ -46,33 +60,45 @@ Published on **April 18, 1857** in Paris, *Le Livre des Esprits* is the founding
46
 
47
  ## Dataset Structure
48
 
 
 
49
  ```json
50
- [
51
- {
52
- "Id": "1",
53
- "Pergunta": "Que é Deus?",
54
- "Resposta": "Deus é a inteligência suprema, causa primária de todas as coisas."
55
- },
56
- {
57
- "Id": "1a",
58
- "Pergunta": "Que se deve entender por infinito?",
59
- "Resposta": "O que não tem começo nem fim: o desconhecido; tudo o que é desconhecido é infinito."
60
- }
61
- ]
62
  ```
63
 
64
- | Field | Description |
65
- |-------|-------------|
66
- | `Id` | Question number (1–1019). Sub-questions use letter suffixes: "150a", "150b", etc. |
67
- | `Pergunta` | The question, in Brazilian Portuguese |
68
- | `Resposta` | The answer given by the spirits, in Brazilian Portuguese |
 
 
69
 
70
- ## Stats
 
 
 
 
 
 
71
 
72
- - **1,019 main questions** + sub-questions (e.g., 150a, 150b, 621a)
73
- - **Language:** Portuguese (Brazilian edition)
74
- - **Format:** JSON array
75
- - **Original language:** French (1857)
 
 
 
 
 
 
 
 
 
76
 
77
  ## Use Cases
78
 
@@ -80,9 +106,12 @@ Published on **April 18, 1857** in Paris, *Le Livre des Esprits* is the founding
80
  - **Fine-tuning** — Q&A pairs for training models on Spiritist doctrine
81
  - **Research** — structured access to Kardec's codification
82
  - **Education** — building study tools, quizzes, and reference apps
 
 
83
 
84
  ## Related Resources
85
 
 
86
  - 🤖 **RIV IA** — Fine-tuned Spiritist AI model: [ia-espirita/riv-ai](https://huggingface.co/ia-espirita/riv-ai)
87
  - 📊 **Training Dataset** — Q&A pairs from all 5 Kardec works: [ia-espirita/riv-ai-dataset](https://huggingface.co/datasets/ia-espirita/riv-ai-dataset)
88
  - 🌐 **IA.Espirita** — Try RIV IA live: [iaespirita.com](https://iaespirita.com)
 
21
  - el-libro-de-los-espiritus
22
  - portuguese
23
  - brazilian
24
+ - multilingual
25
  - doctrine
26
  - reincarnation
27
  - mediumship
28
+ - rag
29
+ - digital-humanities
30
+ pretty_name: "O Livro dos Espíritos — Allan Kardec (1,019 Questions · 4 Languages)"
31
  size_categories:
32
+ - 1K<n<10K
33
  ---
34
 
35
  # 📖 O Livro dos Espíritos — Allan Kardec
36
 
37
  **The Spirits' Book** | **Le Livre des Esprits** | **El Libro de los Espíritus**
38
 
39
+ The complete **1,019 questions and answers** from Allan Kardec's foundational work, structured as machine-readable JSON in **4 languages**.
40
+
41
+ ## Files
42
+
43
+ | File | Language | Records |
44
+ |---|---|---|
45
+ | `livro_dos_espiritos.json` | Portuguese (BR) | 1,196 |
46
+ | `the_spirits_book.json` | English | 1,103 |
47
+ | `el_libro_de_los_espiritus.json` | Spanish | 1,067 |
48
+ | `le_livre_des_esprits.json` | French | 1,123 |
49
+
50
+ > Record counts vary slightly between editions due to how sub-questions are formatted in each translation. All editions cover the same 1,019 main questions.
51
 
52
  ## About the Work
53
 
 
60
 
61
  ## Dataset Structure
62
 
63
+ All files share the same schema. Field names are in English; content is in each file's native language.
64
+
65
  ```json
66
+ {
67
+ "Id": "1",
68
+ "Question": "Que é Deus?",
69
+ "Answer": "Deus é a inteligência suprema, causa primária de todas as coisas."
70
+ }
 
 
 
 
 
 
 
71
  ```
72
 
73
+ ```json
74
+ {
75
+ "Id": "1",
76
+ "Question": "What is God?",
77
+ "Answer": "God is the Supreme Intelligence, the First Cause of all things."
78
+ }
79
+ ```
80
 
81
+ ```json
82
+ {
83
+ "Id": "1",
84
+ "Question": "¿Qué es Dios?",
85
+ "Answer": "Dios es la inteligencia suprema, causa primera de todas las cosas."
86
+ }
87
+ ```
88
 
89
+ ```json
90
+ {
91
+ "Id": "1",
92
+ "Question": "Qu'est-ce que Dieu ?",
93
+ "Answer": "Dieu est l'intelligence suprême, cause première de toutes choses."
94
+ }
95
+ ```
96
+
97
+ | Field | Description |
98
+ |-------|-------------|
99
+ | `Id` | Question number (1–1019). Sub-questions use letter suffixes: `"150a"`, `"150b"`, etc. |
100
+ | `Question` | The question posed by Kardec |
101
+ | `Answer` | The answer given by the spirits |
102
 
103
  ## Use Cases
104
 
 
106
  - **Fine-tuning** — Q&A pairs for training models on Spiritist doctrine
107
  - **Research** — structured access to Kardec's codification
108
  - **Education** — building study tools, quizzes, and reference apps
109
+ - **Multilingual NLP** — cross-language analysis of the same doctrinal content
110
+ - **Digital Humanities** — first machine-readable corpus of the Spiritist Codification
111
 
112
  ## Related Resources
113
 
114
+ - 📖 **O Livro dos Médiuns** — 370+ structured items in 4 languages: [ia-espirita/livro-dos-mediuns](https://huggingface.co/datasets/ia-espirita/livro-dos-mediuns)
115
  - 🤖 **RIV IA** — Fine-tuned Spiritist AI model: [ia-espirita/riv-ai](https://huggingface.co/ia-espirita/riv-ai)
116
  - 📊 **Training Dataset** — Q&A pairs from all 5 Kardec works: [ia-espirita/riv-ai-dataset](https://huggingface.co/datasets/ia-espirita/riv-ai-dataset)
117
  - 🌐 **IA.Espirita** — Try RIV IA live: [iaespirita.com](https://iaespirita.com)