vericudebuget commited on
Commit
c4f9a8e
1 Parent(s): 0349c63

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -1
README.md CHANGED
@@ -14,4 +14,101 @@ tags:
14
  pretty_name: Bible based responses for AI.
15
  size_categories:
16
  - 10M<n<100M
17
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  pretty_name: Bible based responses for AI.
15
  size_categories:
16
  - 10M<n<100M
17
+ task_categories:
18
+ - text-generation
19
+ - question-answering
20
+ - text2text-generation
21
+ ---
22
+
23
+
24
+
25
+
26
+ ![image/jpeg](https://cdn-uploads.huggingface.co/production/uploads/6561b4942cd8dac568582fcd/sSS5IZwKvt0y8pB--RcWJ.jpeg)
27
+
28
+ # Theology Question-Answer Dataset
29
+
30
+ ## Description
31
+
32
+ This dataset contains structured, human-generated content focused on theology, primarily sourced from the website [GotQuestions](https://www.gotquestions.org/). Each entry is formatted as a question (`prompt`) and a corresponding answer (`response`). The dataset is provided in JSON format and is intended for fine-tuning AI models, though it can be used for other purposes as well.
33
+
34
+ The structure of the dataset is as follows:
35
+
36
+ ```json
37
+ {
38
+ "prompt": "What does it mean to present our members as instruments of righteousness (Romans 6:13)?",
39
+ "response": "\nAnswer: ..."
40
+ }
41
+ ```
42
+
43
+ As you can see, most responses start with the word "Answer". If that is a problem to you, try this Python script (see below) that removes the first five letters if the response starts with "Answer".
44
+
45
+ ## Python Script
46
+
47
+
48
+ ```python
49
+ import json
50
+
51
+ def clean_responses(filename):
52
+ with open(filename, 'r') as file:
53
+ data = json.load(file)
54
+
55
+ for entry in data:
56
+ if entry['response'].startswith("Answer"):
57
+ entry['response'] = entry['response'][6:] # Remove "Answer" and the following space
58
+
59
+ with open('cleaned_' + filename, 'w') as outfile:
60
+ json.dump(data, outfile, indent=4)
61
+
62
+ # Usage
63
+ clean_responses('theology_dataset.json')
64
+ ```
65
+
66
+ ## Creation Process
67
+
68
+ I compiled this dataset over the course of about seven hours. The content is structured with the goal of maintaining accuracy while providing high-quality, Biblically-based theological information.
69
+
70
+ ## License
71
+
72
+ I’m unsure of the most appropriate license for this dataset, as it is sourced from [GotQuestions](https://www.gotquestions.org/). Please make sure to credit the original creators of the content. If you have any suggestions or feedback regarding the license, I would greatly appreciate it.
73
+
74
+ ## Disclaimer
75
+
76
+ This dataset is intended for educational and research purposes. It is based on publicly available theological content and is not an official publication of GotQuestions.
77
+
78
+ ## Usage
79
+
80
+ This dataset can be used to fine-tune AI models on theological and Biblically-based content. It may also be useful for various other machine learning tasks or applications related to theology, question-answering systems, or religious studies.
81
+
82
+ ### JSON Example
83
+
84
+ ```json
85
+ {
86
+ "prompt": "What is salvation according to the Bible?",
87
+ "response": "Answer Salvation is a fundamental concept in Christianity, and it's essential to understand its biblical definition. According to the Bible, salvation refers to the deliverance of humanity from the consequences of sin and the restoration of a right relationship with God.
88
+
89
+ The Hebrew word for salvation, "Yasha" or "Yeshua," means "to rescue" or "to deliver." In the Old Testament, salvation often referred to physical deliverance from enemies or threats. However, in the New Testament, salvation takes on a broader meaning, encompassing both physical and spiritual deliverance.
90
+
91
+ The Bible teaches that humanity is sinful and separated from God (Romans 3:23). As a result, we face spiritual death and eternal separation from God (Romans 6:23). However, through faith in Jesus Christ, we can receive salvation and be reconciled to God (2 Corinthians 5:18-20).
92
+
93
+ The apostle Paul summarizes the concept of salvation in Ephesians 2:8-9: "_For by grace you have been saved through faith. And this is not your own doing; it is the gift of God, not a result of works, so that no one may boast._" (ESV)
94
+
95
+ In other words, salvation is a gift from God, obtained through faith in Jesus Christ, and not through our own efforts or good deeds.
96
+
97
+ The Bible describes several aspects of salvation:
98
+
99
+ * **Redemption**: The act of being freed from the penalty of sin (Romans 3:24-25)
100
+ * **Justification**: Being declared righteous before God through faith in Christ (Romans 5:1)
101
+ * **Sanctification**: The process of becoming more like Christ and being set apart for God's purposes (1 Thessalonians 4:3-4)
102
+ * **Glorification**: The ultimate goal of salvation, where believers will be transformed into Christ's likeness and live with Him in eternity (Romans 8:29-30)
103
+
104
+ In summary, salvation in the Bible is the gift of God, obtained through faith in Jesus Christ, which delivers us from the consequences of sin and restored a right relationship with God.
105
+
106
+ (John 3:16)"
107
+ }
108
+ ```
109
+
110
+ To clean the responses, use the Python script provided above.
111
+
112
+ ## Acknowledgments
113
+
114
+ Thanks to [GotQuestions](https://www.gotquestions.org/) for the original content that made this dataset possible. Please ensure they are credited appropriately when using this dataset.