ghana-news / README.md
worldboss's picture
Update README.md
5350fef
|
raw
history blame
2.03 kB
metadata
license: apache-2.0
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
      - split: test
        path: data/test-*
dataset_info:
  features:
    - name: title
      dtype: string
    - name: content
      dtype: string
    - name: author
      dtype: string
    - name: category
      dtype: string
    - name: published_date
      dtype: string
    - name: page_url
      dtype: string
  splits:
    - name: train
      num_bytes: 52396693
      num_examples: 19746
    - name: test
      num_bytes: 11060292
      num_examples: 9037
  download_size: 23299017
  dataset_size: 63456985
pretty_name: No Robots
task_categories:
  - conversational
  - text-generation
  - summarization
  - question-answering
  - text-classification
  - text-retrieval
  - translation
language:
  - en
tags:
  - ghana
  - news
  - politics
  - science
  - business
  - ghana-news
size_categories:
  - 10K<n<100K

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 ([email protected]) from the dataset above.

Context QA: in context question answering from an article

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

Article and Summary

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

Dataset Format

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

Load Dataset

pip install datasets
from datasets import load_dataset

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