SuryaKrishna02 commited on
Commit
e8bdf4d
·
1 Parent(s): 5a702d3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -1
README.md CHANGED
@@ -1,3 +1,93 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Paraphrase
13
+ size_categories:
14
+ - n<1K
15
+ source_datasets:
16
+ - extended|ai4bharat/IndicXParaphrase
17
+ tags:
18
+ - food
19
+ - recipes
20
+ task_categories:
21
+ - text-generation
22
+ task_ids:
23
+ - language-modeling
24
  ---
25
+
26
+ # Summary
27
+ `aya-telugu-paraphrase` is an open source dataset of instruct-style records generated from the Telugu split of [ai4bharat/IndicXParaphrase](https://huggingface.co/datasets/ai4bharat/IndicXParaphrase/viewer/te/test) dataset. This was created as part of [Aya Open Science Initiative](https://sites.google.com/cohere.com/aya-en/home) from Cohere For AI.
28
+
29
+ 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.
30
+
31
+ Supported Tasks:
32
+ - Training LLMs
33
+ - Synthetic Data Generation
34
+ - Data Augmentation
35
+
36
+ Languages: Telugu Version: 1.0
37
+
38
+ # Dataset Overview
39
+ `aya-telugu-paraphrase` is a corpus of more than 1.5k records generated by conversion of Telugu split of [ai4bharat/IndicXParaphrase](https://huggingface.co/datasets/ai4bharat/IndicXParaphrase/viewer/te/test) dataset into Instruct-Style format. This Dataset can be used for the following task:
40
+ - Given a sentence, generate a sentence with similar meaning.
41
+
42
+ # Intended Uses
43
+ 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 sentence and corresponding paraphrased sentence.
44
+
45
+ # Dataset
46
+
47
+ ## Load with Datasets
48
+ To load this dataset with Datasets, you'll just need to install Datasets as `pip install datasets --upgrade` and then use the following code:
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+ ds = load_dataset('SuryaKrishna02/aya-telugu-paraphrase')
53
+ ```
54
+
55
+ ## Purpose of Collection
56
+ Telugu is a low-resource language where there no paraphase 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.
57
+
58
+ ## Sources
59
+ - **[ai4bharat/IndicXParaphrase](https://huggingface.co/datasets/ai4bharat/IndicXParaphrase/viewer/te/test)**: Converted this dataset into Instruct-style prompts and completions.
60
+
61
+ ## Templates
62
+ For the creation of instruct-style prompts and completions from the original dataset, the following one templates was used:
63
+ 1. Given a sentence, generate a sentence with similar meaning.
64
+ ```python
65
+ Prompt:
66
+ ("ఈ క్రింది వాక్యం మరోరీతిలో రాయి:" /
67
+ "ఈ వాక్యం మరోరీతిలో రాయి:" /
68
+ "ఈ వాక్యం మరోరీతిలో రాయి:" /
69
+ "ఈ క్రింది వాక్యం ఇంకొలాగా రాయి:" /
70
+ "ఈ వాక్యం ఇంకొలాగా రాయి:" /
71
+ "ఈ వాక్యం ఇంకొలాగా రాయి:" /
72
+ "ఈ క్రింది వాక్యం మరోరకంగా రాయి:" /
73
+ "ఈ వాక్యం మరోరకంగా రాయి:" /
74
+ "ఈ వాక్యం మరోరకంగా రాయి:")
75
+ {{Original Sentence}}
76
+
77
+ Completion:
78
+ {{Paraphrased Sentence}}
79
+ ```
80
+
81
+
82
+ ## Personal or Sensitive Data
83
+ This dataset contains public information. To our knowledge, there are no private person’s personal identifiers or sensitive information.
84
+
85
+ ## Language
86
+ Telugu
87
+
88
+ # Known Limitations
89
+ - The Dataset is converted from the existing dataset and the contents of this dataset may reflect the bias, factual errors and sensitive matters.
90
+ - 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.
91
+
92
+ # Contributors
93
+ [SuryaKrishna02](https://github.com/SuryaKrishna02) and [Desik98](https://github.com/desik1998)