Add YAML metadata to README
Browse files
README.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Socratic Content Dataset (No System Messages)
|
| 2 |
|
| 3 |
This dataset contains Socratic tutoring conversations with system messages removed.
|
|
@@ -28,6 +48,14 @@ Each line contains a JSON object with the following structure:
|
|
| 28 |
}
|
| 29 |
```
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
## Usage
|
| 32 |
|
| 33 |
This dataset is suitable for:
|
|
@@ -35,7 +63,36 @@ This dataset is suitable for:
|
|
| 35 |
- Training conversational AI systems
|
| 36 |
- Research in educational AI and tutoring systems
|
| 37 |
- Question generation tasks
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
|
| 39 |
## License
|
| 40 |
|
| 41 |
-
Please refer to the original dataset's license terms.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- conversational
|
| 5 |
+
- question-answering
|
| 6 |
+
- text-generation
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
tags:
|
| 10 |
+
- socratic-method
|
| 11 |
+
- education
|
| 12 |
+
- tutoring
|
| 13 |
+
- dialogue
|
| 14 |
+
- question-generation
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1K<n<10K
|
| 17 |
+
format:
|
| 18 |
+
- jsonl
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
# Socratic Content Dataset (No System Messages)
|
| 22 |
|
| 23 |
This dataset contains Socratic tutoring conversations with system messages removed.
|
|
|
|
| 48 |
}
|
| 49 |
```
|
| 50 |
|
| 51 |
+
## Dataset Statistics
|
| 52 |
+
|
| 53 |
+
- **Total conversations**: 9,791
|
| 54 |
+
- **File size**: 2.31 MB
|
| 55 |
+
- **Average conversation length**: 2 messages (user + assistant)
|
| 56 |
+
- **Language**: English
|
| 57 |
+
- **Domain**: Educational, philosophical discussions
|
| 58 |
+
|
| 59 |
## Usage
|
| 60 |
|
| 61 |
This dataset is suitable for:
|
|
|
|
| 63 |
- Training conversational AI systems
|
| 64 |
- Research in educational AI and tutoring systems
|
| 65 |
- Question generation tasks
|
| 66 |
+
- Dialogue system development
|
| 67 |
+
|
| 68 |
+
## Example Usage
|
| 69 |
+
|
| 70 |
+
```python
|
| 71 |
+
import json
|
| 72 |
+
|
| 73 |
+
# Load the dataset
|
| 74 |
+
with open('socratic_content_no_system.jsonl', 'r') as f:
|
| 75 |
+
conversations = [json.loads(line) for line in f]
|
| 76 |
+
|
| 77 |
+
# Access a conversation
|
| 78 |
+
conversation = conversations[0]
|
| 79 |
+
user_message = conversation['messages'][0]['content']
|
| 80 |
+
assistant_response = conversation['messages'][1]['content']
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## Citation
|
| 84 |
+
|
| 85 |
+
If you use this dataset in your research, please cite:
|
| 86 |
+
|
| 87 |
+
```
|
| 88 |
+
@dataset{socratic_content_no_system,
|
| 89 |
+
title={Socratic Content Dataset (No System Messages)},
|
| 90 |
+
author={sanjaypantdsd},
|
| 91 |
+
year={2025},
|
| 92 |
+
url={https://huggingface.co/datasets/sanjaypantdsd/socratic-content-no-system}
|
| 93 |
+
}
|
| 94 |
+
```
|
| 95 |
|
| 96 |
## License
|
| 97 |
|
| 98 |
+
This dataset is released under the MIT License. Please refer to the original dataset's license terms for any additional restrictions.
|