| --- |
| language: |
| - tr |
| license: apache-2.0 |
| task_categories: |
| - text-generation |
| - question-answering |
| tags: |
| - stem-education |
| - turkish |
| - k12 |
| - arduino |
| - scratch |
| - mblock |
| - robotics |
| - coding-education |
| - instruction-tuning |
| size_categories: |
| - n<1K |
| configs: |
| - config_name: default |
| data_files: |
| - split: train |
| path: data/train-* |
| - split: validation |
| path: data/validation-* |
| - split: test |
| path: data/test-* |
| dataset_info: |
| features: |
| - name: id |
| dtype: string |
| - name: category |
| dtype: string |
| - name: difficulty |
| dtype: string |
| - name: instruction |
| dtype: string |
| - name: input |
| dtype: string |
| - name: output |
| dtype: string |
| - name: source |
| dtype: string |
| - name: split |
| dtype: string |
| splits: |
| - name: train |
| num_bytes: 346477 |
| num_examples: 850 |
| - name: validation |
| num_bytes: 21846 |
| num_examples: 50 |
| - name: test |
| num_bytes: 44759 |
| num_examples: 100 |
| download_size: 196755 |
| dataset_size: 413082 |
| --- |
| |
| # Eding STEM TR Instruct 1K |
|
|
| Türkçe K-12 STEM ve kodlama eğitimi için instruction-tuning veri seti. |
|
|
| ## Veri Seti Hakkında |
|
|
| Bu veri seti, Türkiye'deki K-12 seviyesinde STEM ve kodlama eğitimi için |
| hazırlanmış 1.000 instruction-output çiftinden oluşur. |
|
|
| ### Kategoriler |
| - **Arduino**: LED, sensör, motor projeleri, devre tasarımı |
| - **Scratch**: Blok tabanlı programlama, oyun yapımı, animasyon |
| - **mBlock**: mBot robot programlama, sensör kullanımı |
| - **Robotik**: PID kontrol, çizgi izleme, engelden kaçma |
| - **Python STEM**: Algoritmalar, veri yapıları, bilimsel hesaplama |
| - **Elektronik**: Devre analizi, breadboard, temel elektronik |
| - **Algoritma**: Sıralama, arama, karmaşıklık analizi |
|
|
| ### Zorluk Seviyeleri |
| - **İlkokul** (1-4. sınıf) |
| - **Ortaokul** (5-8. sınıf) |
| - **Lise** (9-12. sınıf) |
|
|
| ## Üretim Metodolojisi |
|
|
| Hibrit pipeline ile derlenmiştir: |
| 1. **Manuel Seed Yazımı**: ~150 uzman tarafından yazılmış örnek |
| 2. **Self-Instruct Genişletme**: LLM ile ~850 yeni örnek |
| 3. **Human-in-the-Loop Filtreleme**: ~%35 red oranı ile kalite kontrolü |
|
|
| ## Veri Formatı |
|
|
| ```json |
| { |
| "instruction": "Arduino ile LED yakıp söndüren kodu yaz.", |
| "input": "", |
| "output": "Detaylı açıklama ve kod...", |
| "category": "arduino", |
| "difficulty": "ortaokul" |
| } |
| ``` |
|
|
| ## Splits |
|
|
| | Split | Örnek Sayısı | |
| |-------|-------------| |
| | Train | 53 | |
| | Validation | 7 | |
| | Test | 8 | |
|
|
| ## Kullanım |
|
|
| ```python |
| from datasets import load_dataset |
| |
| dataset = load_dataset("sehinsahfanboy/eding-stem-tr-instruct-1k") |
| print(dataset["train"][0]) |
| ``` |
|
|
| ## Lisans |
|
|
| Apache 2.0 |
|
|
| ## Atıf |
|
|
| ```bibtex |
| @misc{eding-stem-tr-2026, |
| title={Eding STEM TR Instruct 1K: Türkçe K-12 STEM Eğitimi Veri Seti}, |
| author={Kacar, Alim}, |
| year={2026}, |
| publisher={HuggingFace}, |
| url={https://huggingface.co/datasets/sehinsahfanboy/eding-stem-tr-instruct-1k} |
| } |
| ``` |
|
|