File size: 3,119 Bytes
5d535c6 0f711d0 5d535c6 0f711d0 | 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 | ---
license: cc-by-4.0
task_categories:
- text-generation
- summarization
language:
- bn
tags:
- bengali
- news
- headline-generation
- pretraining
- nlp
size_categories:
- 1M<n<10M
---
# Barta: Bengali News Corpus
<p align="center">
<a href="https://arxiv.org/abs/0000.00000">
<img src="https://img.shields.io/badge/%F0%9F%93%84_Paper-Coming_Soon-b12a00?style=for-the-badge&labelColor=ffb300" alt="Paper Coming Soon">
</a>
</p>
[](https://arxiv.org/abs/0000.00000)
[](https://github.com/dipta007/bengali-news-headline)
## Overview
**Barta** (বার্তা, "news" in Bengali) is a large-scale Bengali news corpus containing 1.7M articles from multiple Bangladeshi news sources, spanning diverse categories including politics, sports, entertainment, technology, and more.
Key features:
- **1.7M articles** from major Bangladeshi news outlets
- **Diverse categories** covering national, international, sports, entertainment, technology, lifestyle, etc.
- **Structured fields** including headline, article body, source, and category
- **Deduplicated and cleaned** via content hashing
## Dataset Statistics
| Split | Rows |
|-------|-----:|
| train | 1,708,308 |
## Loading the Dataset
```python
from datasets import load_dataset
# Load full dataset
dataset = load_dataset("dipta007/Barta", split="train")
# Stream without downloading
dataset = load_dataset("dipta007/Barta", split="train", streaming=True)
```
## Data Fields
| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Unique identifier (e.g., `bd-pratidin-1196327`) |
| `article` | string | Full article body in Bengali |
| `headline` | string | Article headline in Bengali |
| `source` | string | News outlet name (e.g., `bd-pratidin`, `prothom-alo`) |
| `category` | string | News category in Bengali (e.g., `জাতীয়`, `খেলা`, `বিনোদন`) |
## Example
```json
{
"id": "bd-pratidin-1196327",
"source": "bd-pratidin",
"category": "দেশগ্রাম",
"headline": "বগুড়ায় মাদককারবারীকে গ্রেফতার করল পুলিশ",
"article": "বগুড়ায় ৩০ হাজার পিস ইয়াবা ট্যাবলেটসহ মো. শামিম (৩০) নামের এক মাদককারবারীকে গ্রেফতার করেছে হাইওয়ে পুলিশ..."
}
```
## Intended Use
- **Pretraining** Bengali language models
- **Headline generation** training and evaluation
- **Text summarization** for Bengali
- **News categorization** and topic modeling
- **Bengali NLP** research and benchmarking
## Source
Crawled from major Bangladeshi news websites. Articles are deduplicated by content hash to remove exact duplicates.
## Citation
```bibtex
@article{Barta2025,
title={Barta: A Large-Scale Bengali News Corpus for Headline Generation},
author={Shubhashis Roy Dipta},
year={2025}
}
```
|