SuryaKrishna02 commited on
Commit
7e3eb59
1 Parent(s): 8ea592d

Added the dataset card.

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language:
5
+ - te
6
+ language_creators:
7
+ - expert-generated
8
+ license:
9
+ - apache-2.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: Telugu Riddles
13
+ size_categories:
14
+ - n<1K
15
+ source_datasets:
16
+ - original
17
+ tags:
18
+ - riddles
19
+ task_categories:
20
+ - text-generation
21
+ task_ids:
22
+ - language-modeling
23
+ ---
24
+
25
+ # Summary
26
+ `TeluguRiddles` is an open source dataset of instruct-style records generated by webscraping multiple riddles websites. This was created as part of [Aya Open Science Initiative](https://sites.google.com/cohere.com/aya-en/home) from Cohere For AI.
27
+
28
+ This dataset can be used for any purpose, whether academic or commercial, under the terms of the [Apache 2.0](https://opensource.org/license/apache-2-0) License.
29
+
30
+ Supported Tasks:
31
+ - Training LLMs
32
+ - Synthetic Data Generation
33
+ - Data Augmentation
34
+
35
+ Languages: Telugu Version: 1.0
36
+
37
+ # Dataset Overview
38
+ `TeluguRiddles` is a corpus of more than 800 records generated by webscraping multiple riddles websites. This Dataset can be used for the following task:
39
+ - Given the riddle, generate the answer for that riddle.
40
+
41
+ # Intended Uses
42
+ While immediately valuable for instruction fine tuning large language models, as a corpus of instruction prompts, this dataset also presents a valuable opportunity for synthetic data generation in the methods. For example, prompt-completions could be submitted as few-shot examples to a large open language model to generate additional riddles and their respective answers.
43
+
44
+ # Dataset
45
+
46
+ ## Load with Datasets
47
+ To load this dataset with Datasets, you'll just need to install Datasets as `pip install datasets --upgrade` and then use the following code:
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+ ds = load_dataset('desik98/TeluguRiddles')
52
+ ```
53
+
54
+ ## Purpose of Collection
55
+ Telugu is a low-resource language where there no riddles and their answers generation instruct-style dataset to the best of my knowledge. This was created as a part of [Aya Open Science Initiative](https://sites.google.com/cohere.com/aya-en/home) from Cohere For AI to make sure Telugu is well represented in the space of AI/ML. Unlike other datasets that are limited to non-commercial use, this dataset can be used, modified, and extended for any purpose, including academic or commercial applications.
56
+
57
+ ## Sources
58
+ - **Mutiple Riddles Websites**: Performed webscraping from [1](https://telugupatham.blogspot.com/p/podupu-kathalu.html), [2](http://www.maganti.org/podupu/podupu1.html), [3](https://teluguadda.co.in/podupu-kathalu-telugu-with-answers/), [4](http://palukuteniyalu.blogspot.com/2016/03/blog-post_17.html) and [5](http://mostusefulthings.blogspot.com/2011/06/blog-post.html) websites which consists of riddles of varying difficulties. Next, performed some pre-processing of the data like removing unwanted characters and bad riddles from the scraped data. Finally, converted the scraped data into Instruct-style prompts and completions.
59
+
60
+ ## Templates
61
+ For the creation of instruct-style prompts and completions from the scraped data, the following one template was used:
62
+ 1. Given Title/Headline of the article, generate the article with that Title/Headline.
63
+ ```python
64
+ Prompt:
65
+ ఈ ("రిడిల్" / "పొడుపు కథ") కి సమాధానం ఇవ్వు
66
+ {{Riddle}}
67
+
68
+ Completion:
69
+ మీరు అడిగిన ("రిడిల్" / "పొడుపు కథ")కి సమాధానం: {{Answer}}
70
+ ```
71
+
72
+ ## Personal or Sensitive Data
73
+ This dataset contains public information. To our knowledge, there are no private person’s personal identifiers or sensitive information.
74
+
75
+ ## Language
76
+ Telugu
77
+
78
+ # Known Limitations
79
+ - The Dataset is scraped from the mutiple riddle websites and the contents of this dataset may reflect the bias, factual errors, inappropriate and sensitive matters.
80
+ - Although there is utmost care taken to keep the dataset as monolingual, there might be some records that may contain English Language along with Telugu.
81
+
82
+ # Contributors
83
+ [Desik98](https://github.com/desik1998) and [SuryaKrishna02](https://github.com/SuryaKrishna02)