CaydennO1 commited on
Commit
c4d6ddb
·
verified ·
1 Parent(s): 623a2ae

Upload 3 files

Browse files
Files changed (3) hide show
  1. dataset_info.json +18 -0
  2. dataset_info.yaml +33 -0
  3. schema.json +18 -0
dataset_info.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "kindness_responsibility_forgivingness_dataset",
3
+ "version": "1.0.0",
4
+ "description": "A text dataset designed to teach AI models about kindness, responsibility, and forgivingness through moral reasoning, examples, and language transformation tasks.",
5
+ "languages": ["en"],
6
+ "license": "CC-BY-4.0",
7
+ "num_samples": {
8
+ "kindness": 250,
9
+ "responsibility": 250,
10
+ "forgivingness": 250
11
+ },
12
+ "structure": {
13
+ "fields": ["instruction", "input", "output"],
14
+ "format": "JSONL"
15
+ },
16
+ "author": "MathAIOfficial",
17
+ "created": "2025-10-26"
18
+ }
dataset_info.yaml ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ pretty_name: Kindness, Responsibility & Forgivingness Dataset
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - text2text-generation
7
+ - instruction-following
8
+ size_categories:
9
+ - n<1K
10
+ source_datasets: []
11
+ annotations_creators:
12
+ - human-authored
13
+ - synthetic-expansion
14
+ dataset_info:
15
+ features:
16
+ - name: instruction
17
+ dtype: string
18
+ - name: input
19
+ dtype: string
20
+ - name: output
21
+ dtype: string
22
+ splits:
23
+ - name: kindness
24
+ num_examples: 250
25
+ - name: responsibility
26
+ num_examples: 250
27
+ - name: forgivingness
28
+ num_examples: 3000
29
+ description: >
30
+ This dataset trains AI systems to express and reason about kindness, responsibility, and forgivingness.
31
+ It includes moral reasoning, behavior reflections, rewrites for tone improvement, and short examples for emotional intelligence tasks.
32
+ homepage: https://huggingface.co/datasets/MathAIOfficial/Responsibility
33
+ dataset_version: "1.0.0"
schema.json ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "instruction": {
5
+ "type": "string",
6
+ "description": "The prompt or directive for the model."
7
+ },
8
+ "input": {
9
+ "type": "string",
10
+ "description": "Optional supporting information or context for the instruction."
11
+ },
12
+ "output": {
13
+ "type": "string",
14
+ "description": "Expected or ideal response from the model."
15
+ }
16
+ },
17
+ "required": ["instruction", "output"]
18
+ }