turkish-math-data / README.md
DevHunterAI's picture
Upload README.md with huggingface_hub
532f60f verified
|
Raw
History Blame Contribute Delete
969 Bytes
---
language:
- tr
license: cc-by-4.0
tags:
- turkish
- mathematics
- arithmetic
- algebra
- synthetic
- pretraining
size_categories:
- 10M<n<100M
---
# Turkish Math Data
Türkçe matematik sentetik pretraining veri seti.
## İstatistikler
| Metrik | Değer |
|--------|-------|
| **Token sayısı** | **86,500,544 (~86.5M)** |
| **Örnek sayısı** | ~3,610,000 |
| **Dil** | Türkçe |
| **Format** | Soru-Çözüm-Cevap |
## İçerik
| Alan | Konu |
|------|------|
| **Aritmetik** | Dört işlem, OBEB/OKEK, kesirler |
| **Cebir** | Denklemler, eşitsizlikler, fonksiyonlar |
| **Sözel problemler** | Yaş, hız, karışım, faiz problemleri |
| **Mantık** | Örüntüler, diziler, akıl yürütme |
## Format
```
Soru: ...
Çözüm: ...
Cevap: ...
```
## Kullanım
```python
from datasets import load_dataset
ds = load_dataset("DevHunterAI/turkish-math-data", split="train")
print(ds[0]["text"])
```