Datasets:
File size: 5,112 Bytes
bf981b3 24d23c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
---
annotations_creators:
- no-annotation
language_creators:
- found
languages:
- id
licenses:
- mit
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- conditional-text-generation
- sequence-modeling
task_ids:
- language-modeling
- other-stuctured-to-text
---
# Dataset Card for id_puisi
## Table of Contents
- [Dataset Card for id_puisi](#dataset-card-for-id_puisi)
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
- [Who are the source language producers?](#who-are-the-source-language-producers)
- [Annotations](#annotations)
- [Annotation process](#annotation-process)
- [Who are the annotators?](#who-are-the-annotators)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
## Dataset Description
- **Homepage:** [puisi-pantun-generator](https://github.com/ilhamfp/puisi-pantun-generator)
- **Repository:** [puisi-pantun-generator](https://github.com/ilhamfp/puisi-pantun-generator)
- **Paper:** [N/A]
- **Leaderboard:** [N/A]
- **Point of Contact:** [Ilham Firdausi Putra]([email protected])
### Dataset Summary
Puisi (poem) is an Indonesian poetic form. The dataset contains 7223 Indonesian puisi with its title and author.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
Indonesian
## Dataset Structure
### Data Instances
```
{
'puisi_with_header': 'TEPERANGKAP
Oleh Mangku Langit Jingga
Mungkin kau membiarkan aku
Membiarkan perasaan ini larut
Memberi ruang jiwaku hampa
Agar tetap terbiasa nikmati
Perangkap yang kau buat
Perisai yang kau banggakan
Takkan jadi tameng bagimu
Aku mengerti betapa hebatnya
Perangkap mu hei sang dewi
Ku akan terus merasa terbiasa
Dengan pesona indahmu
Ku masih akan nikmati hadirmu
Berjalanlah pada hati yang sama
Satu hati denganku
Walau ku terperangkap
Namunku nikmati dan jalani',
'title': 'TEPERANGKAP',
'author': 'Oleh Mangku Langit Jingga',
'puisi': 'Mungkin kau membiarkan aku
Membiarkan perasaan ini larut
Memberi ruang jiwaku hampa
Agar tetap terbiasa nikmati
Perangkap yang kau buat
Perisai yang kau banggakan
Takkan jadi tameng bagimu
Aku mengerti betapa hebatnya
Perangkap mu hei sang dewi
Ku akan terus merasa terbiasa
Dengan pesona indahmu
Ku masih akan nikmati hadirmu
Berjalanlah pada hati yang sama
Satu hati denganku
Walau ku terperangkap
Namunku nikmati dan jalani',
}
```
### Data Fields
- `puisi_with_header`: the raw text from scraping
- `title`: the title extracted from the raw text using regex
- `author`: the author extracted from the raw text using regex
- `puisi`: the poem with title and author extracted out using regex
### Data Splits
The dataset contains only a train set.
## Dataset Creation
### Curation Rationale
The dataset was initially collected as an experiment to generate an Indonesian poem using GPT-2.
### Source Data
#### Initial Data Collection and Normalization
The dataset was scraped using BeautifulSoup from lokerpuisi.web.id (the data no longer exist on the original blog). The title and author column was produced using regex match from puisi_with_header column.
#### Who are the source language producers?
The poems were generated by humans. The users of the original blog voluntarily submit their original poems to get published on the blog.
### Annotations
#### Annotation process
[N/A]
#### Who are the annotators?
[N/A]
### Personal and Sensitive Information
[More Information Needed]
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed]
### Discussion of Biases
[More Information Needed]
### Other Known Limitations
The regex match used to extract the title & author from the raw text is not perfect. Some title & text is still failed to get extracted.
## Additional Information
### Dataset Curators
Ilham Firdausi Putra
### Licensing Information
MIT License
### Citation Information
[N/A]
### Contributions
Thanks to [@ilhamfp](https://github.com/ilhamfp) for adding this dataset. |