Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
German
Size:
10K - 100K
License:
Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,26 +1,52 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
num_bytes: 12458241
|
| 16 |
-
num_examples: 5000
|
| 17 |
-
download_size: 51303492
|
| 18 |
-
dataset_size: 101882051
|
| 19 |
-
configs:
|
| 20 |
-
- config_name: default
|
| 21 |
-
data_files:
|
| 22 |
-
- split: train
|
| 23 |
-
path: data/train-*
|
| 24 |
-
- split: validation
|
| 25 |
-
path: data/validation-*
|
| 26 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- de
|
| 4 |
+
license: other
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-generation
|
| 7 |
+
size_categories:
|
| 8 |
+
- 10K<n<100K
|
| 9 |
+
tags:
|
| 10 |
+
- german
|
| 11 |
+
- deutsch
|
| 12 |
+
- sft
|
| 13 |
+
- instruction-tuning
|
| 14 |
+
- conversational
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
# german-sft-mix
|
| 18 |
+
|
| 19 |
+
A German supervised fine-tuning (SFT) dataset of multi-domain instruction and chat
|
| 20 |
+
conversations. Used to fine-tune
|
| 21 |
+
[Mario12355/nanochat-de-537m](https://huggingface.co/Mario12355/nanochat-de-537m).
|
| 22 |
+
|
| 23 |
+
## Format
|
| 24 |
+
|
| 25 |
+
A single column `messages`: a list of chat turns, each
|
| 26 |
+
`{"role": "user" | "assistant", "content": str}`. Conversations start with `user`
|
| 27 |
+
and (almost always) end with `assistant`.
|
| 28 |
+
|
| 29 |
+
## Splits
|
| 30 |
+
|
| 31 |
+
| Split | Conversations |
|
| 32 |
+
|---|---|
|
| 33 |
+
| train | 35,538 |
|
| 34 |
+
| validation | 5,000 |
|
| 35 |
+
|
| 36 |
+
Turns per conversation: 2 (median), up to 16 — about 66% single-turn, 34% multi-turn.
|
| 37 |
+
|
| 38 |
+
## Usage
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
from datasets import load_dataset
|
| 42 |
+
|
| 43 |
+
ds = load_dataset("Mario12355/german-sft-mix")
|
| 44 |
+
print(ds["train"][0]["messages"])
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Notes
|
| 48 |
+
|
| 49 |
+
- German-language instruction/chat data (partly from translated sources).
|
| 50 |
+
- 166 training conversations end on a `user` turn (no final assistant reply); filter
|
| 51 |
+
these if your trainer requires assistant-terminated dialogues.
|
| 52 |
+
- Derived from public instruction data — verify upstream licenses before commercial use.
|