SuryaKrishna02 commited on
Commit
ee1aaaa
1 Parent(s): 7480ccf

Updated README.md with template mapping details

Browse files
Files changed (1) hide show
  1. README.md +32 -31
README.md CHANGED
@@ -73,43 +73,44 @@ Telugu is a low-resource language where there are no poetry instruct-style datas
73
  - Next, performed some pre-processing of the data like removing unwanted characters and similar poems by calculating the similarity score from the scraped data.
74
  - Finally, converted the scraped data into Instruct-style prompts and completions.
75
 
 
 
 
 
 
 
76
  ## Templates
77
- For the creation of instruct-style prompts and completions from the scraped data, the following three templates were used:
78
  1. Given the poem and type of poetry, explain the meaning of the poem.
79
- ```python
80
- Prompt:
81
- క్రింద ఇచ్చిన {{poetry_type}} లోని పద్యానికి ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము") ఇవ్వండి:
82
- {{Poem}}
 
 
 
 
83
 
84
- Completion:
85
- ఇచ్చిన {{poetry_type}}లోని పద్యానికి ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము"):
86
- {{Meaning}}
87
- ```
88
  2. Given the meaning and the type of poetry, generate the corresponding poem.
89
- ```python
90
- Prompt:
91
- క్రింద ఇచ్చిన ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము") వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:
92
- {{Meaning}}
 
 
 
 
93
 
94
- Completion:
95
- ఇచ్చిన ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము") వచ్చే {{poetry_type}} శైలి పద్యం:
96
- {{Poem}}
97
- ```
98
  3. Given the partial poem and type of poetry, generate the rest of the poem.
99
- ```python
100
- Prompt:
101
- క్రింద ఇచ్చిన ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము") అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:
102
- ("తాత్పర్యం" / "భావం" / "భావము" / "తాత్పర్యము" / "అర్ధం" / "అర్ధము"):
103
- {{Meaning}}
104
-
105
- అసంపూర్ణమైయిన పద్యం:
106
- {{Partial Poem}}
107
-
108
- Completion:
109
- పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:
110
- పద్యం:
111
- {{Poem}}
112
- ```
113
 
114
  ## Personal or Sensitive Data
115
  This dataset contains public information. To our knowledge, there are no private person’s personal identifiers or sensitive information.
 
73
  - Next, performed some pre-processing of the data like removing unwanted characters and similar poems by calculating the similarity score from the scraped data.
74
  - Finally, converted the scraped data into Instruct-style prompts and completions.
75
 
76
+ ## Data Fields
77
+ - `inputs` : Prompt or input to the language model.
78
+ - `targets` : Completion or output of the language model.
79
+ - `template_id` : Id of the template used in `inputs` and `targets`.
80
+ - `template_lang`: ISO code of the language used in the `inputs` and `targets` where *tel* refers to Telugu.
81
+
82
  ## Templates
83
+ For the creation of instruct-style prompts and completions from the scraped data, the following three templates categories with total of 18 different templates were used:
84
  1. Given the poem and type of poetry, explain the meaning of the poem.
85
+ | template_id | inputs | targets |
86
+ |-------------|--------|---------|
87
+ | 1 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి తాత్పర్యం ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి తాత్పర్యం:\n{{Meaning}}``` |
88
+ | 2 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి భావం ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి భావం:\n{{Meaning}}``` |
89
+ | 3 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి భావము ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి భావము:\n{{Meaning}}``` |
90
+ | 4 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి తాత్పర్యము ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి తాత్పర్యము:\n{{Meaning}}``` |
91
+ | 5 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి అర్ధం ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి అర్ధం:\n{{Meaning}}``` |
92
+ | 6 | ```క్రింద ఇచ్చిన {{poetry_type}}లోని పద్యానికి అర్ధము ఇవ్వండి:\n{{Poem}}``` | ```ఇచ్చిన {{poetry_type}}లోని పద్యానికి అర్ధము:\n{{Meaning}}``` |
93
 
 
 
 
 
94
  2. Given the meaning and the type of poetry, generate the corresponding poem.
95
+ | template_id | inputs | targets |
96
+ |-------------|--------|---------|
97
+ | 7 | ```క్రింద ఇచ్చిన తాత్పర్యం వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన తాత్పర్యం వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
98
+ | 8 | ```క్రింద ఇచ్చిన భావం వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన భావం వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
99
+ | 9 | ```క్రింద ఇచ్చిన భావము వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన భావము వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
100
+ | 10 | ```క్రింద ఇచ్చిన తాత్పర్యము వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన తాత్పర్యము వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
101
+ | 11 | ```క్రింద ఇచ్చిన అర్ధం వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన అర్ధం వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
102
+ | 12 | ```క్రింద ఇచ్చిన అర్ధము వచ్చే లాగా {{poetry_type}} శైలిలో పద్యం రాయండి:\n{{Meaning}}``` | ```ఇచ్చిన అర్ధము వచ్చే {{poetry_type}} శైలి పద్యం:\n{{Poem}}``` |
103
 
 
 
 
 
104
  3. Given the partial poem and type of poetry, generate the rest of the poem.
105
+ | template_id | inputs | targets |
106
+ |-------------|--------|---------|
107
+ | 13 | ```క్రింద ఇచ్చిన తాత్పర్యం అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nతాత్పర్యం:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
108
+ | 14 | ```క్రింద ఇచ్చిన భావం అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nభావం:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
109
+ | 15 | ```క్రింద ఇచ్చిన భావము అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nభావము:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
110
+ | 16 | ```క్రింద ఇచ్చిన తాత్పర్యము అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nతాత్పర్యము:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
111
+ | 17 | ```క్రింద ఇచ్చిన అర్ధం అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nఅర్ధం:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
112
+ | 18 | ```క్రింద ఇచ్చిన అర్ధము అనుసరించి అసంపూర్ణమైయిన పద్యాన్ని {{poetry_type}} శైలిలో పూర్తిచేసి రాయండి:\nఅర్ధము:\n{{Meaning}}\n\nఅసంపూర్ణమైయిన పద్యం:\n{{Partial Poem}}``` | ```పూర్తిచేయబడ్డ పద్యం క్రింద ఇవ్వబడింది:\nపద్యం:\n{{Poem}}``` |
113
+
 
 
 
 
 
114
 
115
  ## Personal or Sensitive Data
116
  This dataset contains public information. To our knowledge, there are no private person’s personal identifiers or sensitive information.