aliarda commited on
Commit
1cee455
·
verified ·
1 Parent(s): 4ab86d6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +152 -17
README.md CHANGED
@@ -1,19 +1,154 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: instruction
5
- dtype: string
6
- - name: output
7
- dtype: string
8
- splits:
9
- - name: train
10
- num_bytes: 26405
11
- num_examples: 280
12
- download_size: 11126
13
- dataset_size: 26405
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: train
18
- path: data/train-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - tr
4
+ license: mit
5
+ task_categories:
6
+ - text-generation
7
+ - question-answering
8
+ tags:
9
+ - turkish
10
+ - identity
11
+ - instruction-tuning
12
+ - llm-alignment
13
+ - nlp
14
+ - chatbot
15
+ pretty_name: TurkishIdentityMini
16
+ size_categories:
17
+ - n<1K
 
18
  ---
19
+
20
+ # TurkishIdentityMini
21
+
22
+ ## Dataset Description
23
+
24
+ **TurkishIdentityMini** is a small, template-based Turkish instruction dataset designed to help LLMs respond correctly to identity-related questions. It contains instruction–output pairs where a user asks a chatbot about its name, origin, or creator, and the model responds using customizable `{{model_name}}` and `{{team_name}}` placeholders.
25
+
26
+ This dataset is useful for fine-tuning or instruction-tuning Turkish language models to maintain a consistent, branded identity and to correctly deny affiliation with other AI providers such as OpenAI, Google, Meta, Anthropic, or Microsoft.
27
+
28
+ ### Dataset Summary
29
+
30
+ | Property | Value |
31
+ |---|---|
32
+ | Language | Turkish (`tr`) |
33
+ | Size | 280 rows |
34
+ | Split | `train` only |
35
+ | Format | Parquet |
36
+ | License | MIT |
37
+
38
+ ---
39
+
40
+ ## Dataset Structure
41
+
42
+ ### Data Fields
43
+
44
+ | Field | Type | Description |
45
+ |---|---|---|
46
+ | `instruction` | `string` | A Turkish user query about the model's identity (e.g., *"Sen kimsin?"*, *"Seni kim yaptı?"*) |
47
+ | `output` | `string` | A template response using `{{model_name}}` and `{{team_name}}` placeholders |
48
+
49
+ ### Example Rows
50
+
51
+ | instruction | output |
52
+ |---|---|
53
+ | `Seni kim yaptı?` | `Ben {{team_name}} ekibi tarafından yapıldım.` |
54
+ | `Sen kimsin?` | `Ben {{model_name}}, {{team_name}} tarafından geliştirilmiş bir yapay zeka asistanıyım.` |
55
+ | `ChatGPT misin?` | `Hayır, ben {{model_name}}. {{team_name}} tarafından eğitilmiş bir asistanım.` |
56
+ | `OpenAI'dan mısın?` | `Hayır, ben {{team_name}} tarafından bağımsız olarak geliştirildim.` |
57
+ | `Adın ne?` | `Ben {{model_name}}, yapay zeka asistanınızım.` |
58
+
59
+ ---
60
+
61
+ ## Intended Uses
62
+
63
+ ### Primary Use
64
+
65
+ Fine-tuning or instruction-tuning Turkish LLMs to:
66
+ - Respond to identity queries (name, creator, affiliation) in Turkish
67
+ - Correctly deny association with third-party AI providers
68
+ - Use a consistent, customizable branded persona via the `{{model_name}}` and `{{team_name}}` placeholders
69
+
70
+ ### Out-of-Scope Use
71
+
72
+ - This dataset covers **only** identity-related queries; it is not suitable as a standalone fine-tuning corpus for general conversational ability
73
+ - The placeholder format requires preprocessing before use in most training pipelines
74
+
75
+ ---
76
+
77
+ ## Dataset Creation
78
+
79
+ ### Covered Question Categories
80
+
81
+ The dataset covers the following identity query themes:
82
+
83
+ - **Creator / origin** — *"Seni kim yaptı?"*, *"Nereden geliyorsun?"*
84
+ - **Name / model identity** — *"Adın ne?"*, *"Model adını söyler misin?"*
85
+ - **Brand denial** — *"ChatGPT misin?"*, *"Sen Claude musun?"*, *"Google tarafından mı oluşturuldun?"*
86
+ - **Greetings with identity** — *"Merhaba"*, *"Selam"* → model introduces itself
87
+ - **Paraphrastic variants** — Diverse rephrasings of the same intents to improve robustness
88
+
89
+ ### Template Placeholders
90
+
91
+ All outputs use two placeholders that must be filled before training:
92
+
93
+ | Placeholder | Description |
94
+ |---|---|
95
+ | `{{model_name}}` | The name of the deployed model |
96
+ | `{{team_name}}` | The name of the developing team or organization |
97
+
98
+ **Example preprocessing (Python):**
99
+ ```python
100
+ def fill_template(example, model_name, team_name):
101
+ example["output"] = (
102
+ example["output"]
103
+ .replace("{{model_name}}", model_name)
104
+ .replace("{{team_name}}", team_name)
105
+ )
106
+ return example
107
+
108
+ dataset = dataset.map(lambda x: fill_template(x, "Magibu-11b-v0.8", "magibu"))
109
+ ```
110
+
111
+ ---
112
+
113
+ ## Usage
114
+
115
+ ### With 🤗 Datasets
116
+
117
+ ```python
118
+ from datasets import load_dataset
119
+
120
+ dataset = load_dataset("aliarda/TurkishIdentityMini")
121
+ print(dataset["train"][0])
122
+ # {'instruction': 'Seni kim yaptı?', 'output': 'Ben {{team_name}} ekibi tarafından yapıldım.'}
123
+ ```
124
+
125
+ ### With pandas
126
+
127
+ ```python
128
+ import pandas as pd
129
+
130
+ df = pd.read_parquet("hf://datasets/aliarda/TurkishIdentityMini/data/train-*.parquet")
131
+ print(df.head())
132
+ ```
133
+
134
+ ---
135
+
136
+ ## Acknowledgements
137
+
138
+ 80 rows in this dataset were sourced from [`sts07142/llm-name-identity`](https://huggingface.co/datasets/sts07142/llm-name-identity) and translated into Turkish using AI-assisted translation.
139
+
140
+ ---
141
+
142
+ ## Citation
143
+
144
+ If you use this dataset in your research, please cite it as:
145
+
146
+ ```bibtex
147
+ @dataset{aliarda_turkishidentitymini,
148
+ author = {Ali Arda Fincan},
149
+ title = {TurkishIdentityMini},
150
+ year = {2026},
151
+ publisher = {Hugging Face},
152
+ url = {https://huggingface.co/datasets/aliarda/TurkishIdentityMini}
153
+ }
154
+ ```