sayurio commited on
Commit
0a70af2
·
verified ·
1 Parent(s): f79e7df

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -8
README.md CHANGED
@@ -1,16 +1,55 @@
1
  ---
2
  license: mit
3
  task_categories:
4
- - text-classification
5
  - text-generation
6
- - token-classification
7
- - table-question-answering
8
- - question-answering
9
- - translation
10
- - summarization
11
  language:
12
  - bn
13
- pretty_name: Bangla Kobita Web Scrape - Bangla Literature Dataset
 
 
 
 
 
 
14
  size_categories:
15
  - 100K<n<1M
16
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  task_categories:
 
4
  - text-generation
 
 
 
 
 
5
  language:
6
  - bn
7
+ tags:
8
+ - bengali
9
+ - poetry
10
+ - literature
11
+ - web-scraped
12
+ - non-ai
13
+ pretty_name: Bangla Kobita Poetry Archive
14
  size_categories:
15
  - 100K<n<1M
16
+ ---
17
+
18
+ # Bangla Kobita Poetry Archive
19
+
20
+ ## Overview
21
+ This repository contains a curated text dataset of Bengali poetry scraped from the web, primarily targeting comprehensive poetry platforms like [bangla-kobita.com](https://www.bangla-kobita.com/). The primary goal of this archive is to preserve a rich collection of purely human-written Bengali poems (Bangla Kobita), creating a distinct record of human artistic expression, emotion, and linguistic rhythm separate from AI-generated text.
22
+
23
+ ## Purpose and Usage
24
+ This dataset is published publicly and strictly for **educational, research, linguistic analysis, and archival purposes**. It is a highly specialized resource for Natural Language Processing (NLP) researchers, data scientists, and linguists looking to:
25
+ * Pre-train or fine-tune Bengali Large Language Models (LLMs) on creative, metaphorical, and emotionally complex text.
26
+ * Study poetic structures, rhyme schemes, and metrical patterns in modern and classic Bengali literature.
27
+ * Perform sentiment analysis and emotion detection on deeply expressive artistic writing.
28
+
29
+ ## Dataset Details
30
+ * **Source:** bangla-kobita.com (and/or related Bengali poetry archives)
31
+ * **Collection Method:** Web scraping
32
+ * **Content Type:** Text (Bengali poems, including titles, poet names, and stanza-formatted text written by humans without the use of AI).
33
+ * **Repository:** `sayurio/bangla-kobita-scrape-bangla-literature`
34
+
35
+ ## Copyright and Fair Use Disclaimer
36
+ This archive is created under the principles of **Fair Use** (under Section 107 of the Copyright Act) for purposes such as criticism, comment, teaching, scholarship, and research.
37
+
38
+ * **No Ownership Claimed:** The creator of this repository does not claim any ownership, authorship, or copyright over the original poems. All rights, title, and interest in the original text remain entirely with their respective poets, authors, and the publishing platforms.
39
+ * **Non-Commercial:** This dataset is provided completely free of charge and is strictly not intended for commercial gain, monetization, or profit.
40
+ * **Transformative Use:** The data has been aggregated, extracted from its original web formatting, and compiled specifically for computational analysis, archiving, and educational study. This represents a transformative use of the original publicly available artistic material.
41
+
42
+ **Takedown Requests:** If you are a copyright holder or a poet whose work is included in this dataset and wish for it to be removed from this archive, please open an issue or contact the repository owner directly. Please submit a removal request specifying the exact poem titles, URLs, or text snippets you wish to have taken down so they can be accurately located within the dataset and removed.
43
+
44
+ ## How to Use
45
+ You can load this dataset directly into your Python environment using the Hugging Face `datasets` library:
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ # Load the dataset
51
+ dataset = load_dataset("sayurio/bangla-kobita-scrape-bangla-literature")
52
+
53
+ # View the structure of the first poem entry
54
+ print(dataset['train'][0])
55
+ ```