Barta
Collection
3 items • Updated
The dataset viewer should be available soon. Please retry later.
BartaLens (বার্তা + Lens) is a large-scale multimodal Bengali news corpus pairing articles with their associated news images. It is designed for training and evaluating vision-language models on Bengali headline generation.
Key features:
| Split | Rows |
|---|---|
| train | 1,219,442 |
| validation | 5,000 |
| test | 15,000 |
from datasets import load_dataset
# Load train split
dataset = load_dataset("dipta007/BartaLens", split="train")
# Load test split
test = load_dataset("dipta007/BartaLens", split="test")
# Access an example
example = dataset[0]
image = example["image"] # PIL Image
headline = example["headline"]
article = example["article"]
| Field | Type | Description |
|---|---|---|
id |
string | Unique identifier |
article |
string | Full article body in Bengali |
headline |
string | Article headline in Bengali |
source |
string | News outlet name |
category |
string | News category in Bengali |
image |
Image | Associated news photograph (PIL Image) |
@article{BartaLens2025,
title={BartaLens: A Multimodal Bengali News Corpus for Headline Generation},
author={Shubhashis Roy Dipta},
year={2025}
}