melique commited on
Commit
740a670
·
verified ·
1 Parent(s): 3e86a2a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -12
README.md CHANGED
@@ -32,23 +32,30 @@ Bu veri kümesi, Türkçe sorguları iki farklı sınıfa ayırmak amacıyla olu
32
 
33
  Veri kümesi, metin sınıflandırma, öneri sistemleri ve doğal dil anlama projelerinde kullanılabilir.
34
 
35
- ## 📁 Dataset Özeti
36
 
37
- | Özellik | Değer |
 
 
 
 
 
 
 
38
  |-------------|-------------------------------|
39
- | Örnek sayısı| 3188 |
40
- | Sınıflar | `keyword`, `semantic` |
41
- | Format | CSV / 🤗 Dataset (via `load_dataset`) |
42
- | Alanlar | `query`, `label` |
43
- | Dil | Türkçe |
44
 
45
- ## 🔍 Sütunlar
46
 
47
- - `query`: Kullanıcının arama sorgusu
48
- - `label`: İlgili sorgu tipi (`keyword` veya `semantic`)
49
 
50
 
51
- ## 🧪 Kullanım Örneği
52
 
53
  ```python
54
  from datasets import load_dataset
@@ -58,7 +65,7 @@ dataset = load_dataset("melique/query-classifier-dataset")
58
  print(dataset["train"][0])
59
  # {'query': 'Gece Gelen', 'label': 'keyword'}
60
  ```
61
- ## Lisans
62
  Bu veri kümesi, araştırma ve eğitim amaçlı olarak paylaşılmıştır. Ticari kullanımlar için veri sahibi ile iletişime geçiniz.
63
 
64
 
 
32
 
33
  Veri kümesi, metin sınıflandırma, öneri sistemleri ve doğal dil anlama projelerinde kullanılabilir.
34
 
35
+ This dataset was created to categorize Turkish queries into two different classes:
36
 
37
+ - `keyword`: Short, direct queries containing keywords (example: “Gece Gelen”, “Ozan Kılıç”)
38
+ - `semantic`: Conceptual or genre-specific queries (e.g. “2020 drama films”, “Science Fiction”)
39
+
40
+ The dataset can be used in text classification, recommendation systems and natural language understanding projects.
41
+
42
+ ## 📁 Dataset Özeti (Dataset Summary)
43
+
44
+ | Özellik (Feature) | Değer (Value) |
45
  |-------------|-------------------------------|
46
+ | Örnek sayısı (Example count)| 3188 |
47
+ | Sınıflar (Classes) | `keyword`, `semantic` |
48
+ | Format | CSV / 🤗 Dataset (via `load_dataset`) |
49
+ | Alanlar (Fields) | `query`, `label` |
50
+ | Dil (Language) | Türkçe (Turkish) |
51
 
52
+ ## 🔍 Sütunlar (Columns)
53
 
54
+ - `query`: Kullanıcının arama sorgusu (user search query)
55
+ - `label`: İlgili sorgu tipi (Related query type) (`keyword` veya/or `semantic`)
56
 
57
 
58
+ ## 🧪 Kullanım Örneği (Usage)
59
 
60
  ```python
61
  from datasets import load_dataset
 
65
  print(dataset["train"][0])
66
  # {'query': 'Gece Gelen', 'label': 'keyword'}
67
  ```
68
+ ## Lisans (License)
69
  Bu veri kümesi, araştırma ve eğitim amaçlı olarak paylaşılmıştır. Ticari kullanımlar için veri sahibi ile iletişime geçiniz.
70
 
71