CoolFace
Datasetpublic

worldboss/ghana-news

Description ๐Ÿ™…โ€โ™‚๏ธ๐Ÿค– GhanaNews dataset is a collection of news articles from various Ghanaian News Portals (MyJoyOnline, GraphicOnline, GhanaWeb, PulseGh, CitiNewsOnline, ect). The dataset is provided by the academic comunity for research purposes in data mining (clustering, classification, etc), information retrieval (ranking, search, etc), xml, data compression, data streaming, and any other non-commercial activity. The Ghana news topic classification dataset is constructed byโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/worldboss/ghana-news.

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
2likes72downloads
Dataset Card

Description ๐Ÿ™…โ€โ™‚๏ธ๐Ÿค–

GhanaNews dataset is a collection of news articles from various Ghanaian News Portals (MyJoyOnline, GraphicOnline, GhanaWeb, PulseGh, CitiNewsOnline, ect). The dataset is provided by the academic comunity for research purposes in data mining (clustering, classification, etc), information retrieval (ranking, search, etc), xml, data compression, data streaming, and any other non-commercial activity.

The Ghana news topic classification dataset is constructed by Theophilus Siameh (theodondre@gmail.com) from the dataset above.

Context QA: in context question answering from an article

shell
{"article": "...", "question": "...", "answer": "..."}

Article and Summary

shell
{"article": "...", "summary": "..."}

Dataset Format

shell
{
    "title": "...", 
    "content": "...", 
    "author": "...", 
    "category": "...", 
    "published_date": "...", 
    "page_url": "..."
}

Load Dataset

shell
pip install datasets
python
from datasets import load_dataset

train = load_dataset("worldboss/ghana-news", split="train")
test =  load_dataset("worldboss/ghana-news", split="test")

pd.DataFrame(train).head()