menesnas commited on
Commit
682c564
·
verified ·
1 Parent(s): 71864c9

Create README

Browse files
Files changed (1) hide show
  1. README +74 -0
README ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - tr
4
+ task_categories:
5
+ - sentence-similarity
6
+ - text-classification
7
+ license: mit
8
+ size_categories:
9
+ - n<1K
10
+ ---
11
+
12
+ # Semantic Textual Similarity (STS) Dataset (Turkish)
13
+
14
+ This repository contains a Turkish **Semantic Textual Similarity (STS)** dataset created as part of a university assignment on semantic similarity, sentence embeddings, and vector representations in Natural Language Processing (NLP).
15
+
16
+ ## Authors
17
+
18
+ - Muhammet Enes Nas
19
+ - Salih Dede
20
+
21
+ ## About
22
+
23
+ The purpose of this project was to gain practical experience with:
24
+
25
+ - Semantic Textual Similarity (STS)
26
+ - Sentence Embeddings
27
+ - Vector Representations
28
+ - Similarity Scoring
29
+ - NLP Dataset Preparation
30
+
31
+ The dataset consists of Turkish sentence pairs annotated with a semantic similarity score ranging from **0 to 100**, where:
32
+
33
+ | Score | Meaning |
34
+ |-------:|---------|
35
+ | 0 | Completely unrelated |
36
+ | 25 | Weak semantic relation |
37
+ | 50 | Moderate similarity |
38
+ | 75 | High similarity |
39
+ | 100 | Semantically equivalent |
40
+
41
+ ## Dataset Format
42
+
43
+ Each sample contains three fields:
44
+
45
+ | Column | Description |
46
+ |---------|-------------|
47
+ | `sentence1` | First sentence |
48
+ | `sentence2` | Second sentence |
49
+ | `humanScore` | Human-annotated semantic similarity score (0–100) |
50
+
51
+ Example:
52
+
53
+ ```json
54
+ {
55
+ "sentence1": "Doktor ameliyata geç kaldı.",
56
+ "sentence2": "Ameliyatı yapacak hekim gecikti.",
57
+ "humanScore": 97.85
58
+ }
59
+ ```
60
+
61
+ ## Intended Use
62
+
63
+ This dataset is intended for educational and research purposes, including:
64
+
65
+ - Sentence Embedding models
66
+ - Semantic Similarity prediction
67
+ - Siamese Networks
68
+ - SBERT fine-tuning
69
+ - Embedding evaluation
70
+ - NLP coursework
71
+
72
+ ## License
73
+
74
+ MIT License.