ReySajju742 commited on
Commit
90aa7dd
·
verified ·
1 Parent(s): fe279a8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -3
README.md CHANGED
@@ -1,3 +1,92 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - hi
7
+ - ur
8
+ tags:
9
+ - urdu
10
+ - hindi
11
+ - urdu translitration
12
+ pretty_name: Urdu-Hindi Data
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+ # Hindi Transliteration of Urdu Poetry Dataset
17
+
18
+ Welcome to the **Hindi Transliteration of Urdu Poetry Dataset**! This dataset features Hindi transliterations of traditional Urdu poetry. Each entry in the dataset includes two columns:
19
+ - **Title:** The transliterated title of the poem in Hindi.
20
+ - **Poem:** The transliterated text of the Urdu poem rendered in Hindi script.
21
+
22
+ This dataset is perfect for researchers and developers working on cross-script language processing, transliteration models, and comparative literary studies.
23
+
24
+ ---
25
+
26
+ ## Dataset Overview
27
+
28
+ This dataset offers a rich collection of Urdu poetry, transliterated into Hindi. By providing both the title and the complete poem in Hindi script, it aims to bridge the gap between Urdu literature and Hindi readers. The dataset is structured in a tabular format, making it easy to work with using popular data processing tools.
29
+
30
+ Each record contains:
31
+ - **Poem Title:** The title of the poem, transliterated into Hindi.
32
+ - **Poem Text:** The full poem text, transliterated into Hindi.
33
+
34
+ ---
35
+
36
+ ## Data Format
37
+
38
+ The dataset is available in standard tabular formats such as CSV or JSON. Each entry includes the following columns:
39
+
40
+ - **title** (`string`): The transliterated title of the poem.
41
+ - **poem** (`string`): The transliterated full text of the poem.
42
+
43
+ *Example (CSV format):*
44
+ ```csv
45
+ title,poem
46
+ "दिल की किताब","यह इश्क़ नहीं आसान, बस इतना समझ लीजिये..."
47
+ "फूलों का सिलसिला","खुशबुओं की महफ़िल में, एक फूल कहानी कहता है..."
48
+ How to Load the Dataset
49
+ You can easily load the dataset using the Hugging Face Datasets library. Below is an example in Python:
50
+
51
+ python
52
+ Copy
53
+ Edit
54
+ from datasets import load_dataset
55
+
56
+ # Replace 'your-username/hindi-transliteration-urdu-poetry' with the actual repository name on Hugging Face Hub
57
+ dataset = load_dataset("your-username/hindi-transliteration-urdu-poetry")
58
+
59
+ # Accessing the train split (if applicable, otherwise adjust accordingly)
60
+ print(dataset['train'][0])
61
+ Note: Ensure that you have the datasets library installed:
62
+
63
+ bash
64
+ Copy
65
+ Edit
66
+ pip install datasets
67
+ Intended Use Cases
68
+ Transliteration Research: Develop and evaluate models for transliterating text between scripts.
69
+ Cross-Lingual Studies: Analyze similarities and differences in poetic expression across languages.
70
+ Text Generation: Train language models for generating poetry in Hindi using transliterated content.
71
+ Cultural and Literary Studies: Explore themes, styles, and cultural narratives in Urdu poetry made accessible to Hindi readers.
72
+ License
73
+ This dataset is distributed under the MIT License. See the LICENSE file for more details.
74
+
75
+ Contributing
76
+ Contributions to the dataset are welcome! If you have improvements, additional data, or suggestions, please open an issue or submit a pull request on the GitHub repository.
77
+
78
+ Citation
79
+ If you find this dataset useful in your work, please consider citing it. For example:
80
+
81
+ bibtex
82
+ Copy
83
+ Edit
84
+ @dataset{yourusername2025hinditranslit,
85
+ author = {Your Name},
86
+ title = {Hindi Transliteration of Urdu Poetry Dataset},
87
+ year = {2025},
88
+ publisher = {Hugging Face},
89
+ url = {https://huggingface.co/datasets/your-username/hindi-transliteration-urdu-poetry},
90
+ }
91
+ Contact
92
+ For any questions, suggestions, or issues, please contact [email protected]