nlpctx commited on
Commit
7061059
·
verified ·
1 Parent(s): b34b9ac

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +99 -31
README.md CHANGED
@@ -1,33 +1,101 @@
 
1
  ---
2
- dataset_info:
3
- features:
4
- - name: doc_id
5
- dtype: int64
6
- - name: question_en
7
- dtype: string
8
- - name: answer
9
- dtype: string
10
- - name: level_0
11
- dtype: string
12
- - name: level_1
13
- dtype: string
14
- - name: level_2
15
- dtype: string
16
- - name: level_3
17
- dtype: string
18
- - name: level_4
19
- dtype: string
20
- - name: level_5
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 1651069
25
- num_examples: 2091
26
- download_size: 694495
27
- dataset_size: 1651069
28
- configs:
29
- - config_name: default
30
- data_files:
31
- - split: train
32
- path: data/train-*
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  ---
3
+ language:
4
+ - en
5
+ - te
6
+ license: apache-2.0
7
+ task_categories:
8
+ - question-answering
9
+ - text-retrieval
10
+ - text-generation
11
+ pretty_name: Telugu QA Paraphrases
12
+ size_categories:
13
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  ---
15
+
16
+ # Telugu QA Paraphrases
17
+
18
+ A synthetic multilingual query-rewriting dataset for evaluating retrieval robustness under Telugu-English code mixing.
19
+
20
+ ## Dataset Description
21
+
22
+ This dataset extends an existing Telugu QA dataset by generating multiple query variants with increasing levels of Telugu-English code mixing.
23
+
24
+ Each example contains:
25
+
26
+ - `question` : Original English question
27
+ - `answer` : Ground-truth answer
28
+ - `level_0` : English paraphrase
29
+ - `level_1` : Light Telugu-English code mixing
30
+ - `level_2` : Moderate Telugu-English code mixing
31
+ - `level_3` : Heavy Telugu-English code mixing
32
+ - `level_4` : Romanized Telugu
33
+ - `level_5` : Telugu script
34
+
35
+ ## Motivation
36
+
37
+ Multilingual embedding models are often evaluated on pure English or fully translated queries.
38
+
39
+ Real-world users frequently write:
40
+
41
+ - Telugu-English code mixed text
42
+ - Romanized Telugu
43
+ - Mixed-script queries
44
+
45
+ This dataset enables evaluation of retrieval robustness across progressively increasing code-mixing levels.
46
+
47
+ ## Example
48
+
49
+ ```json
50
+ {
51
+ "question": "How do I apply for a passport in India?",
52
+ "answer": "...",
53
+ "level_0": "How can I apply for an Indian passport?",
54
+ "level_1": "భారతదేశంలో పాస్పోర్ట్ ఎలా అప్లై చెయ్యాలి?",
55
+ "level_2": "India-lo passport apply process enti?",
56
+ "level_3": "భారత్ పాస్పోర్ట్ అప్లికేషన్ ఎలా చేయాలి?",
57
+ "level_4": "India passport apply ela?",
58
+ "level_5": "భారతదేశ పాస్పోర్ట్ కోసం ఎలా అప్లై చేయాలి?"
59
+ }
60
+ ```
61
+
62
+ ## Intended Uses
63
+
64
+ - Multilingual retrieval
65
+ - Dense retrieval evaluation
66
+ - RAG benchmarking
67
+ - Code-mixed query understanding
68
+ - Embedding model robustness analysis
69
+
70
+ ## Source Dataset
71
+
72
+ This dataset was generated from:
73
+
74
+ https://huggingface.co/datasets/gurumurthy3/Legal-FAQ
75
+
76
+ Please cite and credit the original dataset creators.
77
+
78
+ ## Generation
79
+
80
+ Query variants were generated using Sarvam-M and subsequently filtered for semantic preservation.
81
+
82
+ ## Limitations
83
+
84
+ The generated paraphrases may contain:
85
+
86
+ - Imperfect transliteration
87
+ - Script mixing
88
+ - Translation artifacts
89
+ - Semantic drift in a small number of examples
90
+
91
+ Manual validation is recommended for benchmark creation.
92
+
93
+ ## Citation
94
+
95
+ ```bibtex
96
+ @dataset{telugu_qa_paraphrases,
97
+ title={Telugu QA Paraphrases},
98
+ author={Suhas Koheda},
99
+ year={2026}
100
+ }
101
+ ```