Ming Pao Canada Hong Kong News Corpus (明報港聞)
Dataset Description
A corpus of Hong Kong news articles from Ming Pao Canada (明報加拿大), covering over 11 years of Hong Kong news from 2014 to 2026.
Dataset Summary
- Source: Ming Pao Canada (加東版/多倫多)
- Language: Traditional Chinese (繁體中文) / Cantonese (粵語)
- Time Period: July 2014 - January 2026
- Total Articles: ~180,000+
- Category: Hong Kong News (港聞)
Supported Tasks
- Text Generation: Pre-training or fine-tuning language models on Traditional Chinese news text
- Text Classification: News categorization, sentiment analysis
- Summarization: News headline generation, article summarization
- Information Extraction: Named entity recognition, event extraction
Dataset Structure
Data Fields
| Field | Type | Description |
|---|---|---|
id |
string | Unique article identifier |
title |
string | Article headline (Traditional Chinese) |
content |
string | Full article text |
publish_date |
string | Publication date (YYYY-MM-DD) |
source |
string | Source identifier |
category |
string | News category |
url |
string | Original article URL |
word_count |
int | Character count |
language |
string | Language code |
Data Splits
| Split | Number of Examples |
|---|---|
| train | ~180,000 |
Example
{
"id": "20240115_hk-gaa1",
"title": "政府宣布新措施",
"content": "【明報專訊】政府今日宣布...",
"publish_date": "2024-01-15",
"source": "mingpao_canada_hk",
"category": "港聞",
"url": "https://www.mingpaocanada.com/tor/htm/News/20240115/HK-gaa1_r.htm",
"word_count": 1234,
"language": "yue"
}
Usage
Loading the Dataset
from datasets import load_dataset
# Load the full dataset
ds = load_dataset("hon9kon9ize/mingpao-canada-hk-news")
# Access data
print(ds["train"][0])
# Filter by date
recent = ds["train"].filter(lambda x: x["publish_date"] >= "2024-01-01")
Using with Pandas
import pandas as pd
from datasets import load_dataset
ds = load_dataset("hon9kon9ize/mingpao-canada-hk-news")
df = ds["train"].to_pandas()
# Group by year
df["year"] = pd.to_datetime(df["publish_date"]).dt.year
print(df.groupby("year").size())
Dataset Creation
Source Data
Articles were collected from Ming Pao Canada's online archive, focusing on the Hong Kong News (港聞) section.
Processing
- HTML content extraction using BeautifulSoup
- Unicode normalization (NFC) for Traditional Chinese
- Boilerplate removal (navigation, headers, footers)
- Content deduplication via MD5 hashing
- Quality filtering (minimum content length)
Curation Rationale
This dataset was created to provide a high-quality Traditional Chinese news corpus for:
- Training language models for Cantonese/Traditional Chinese
- Research on Hong Kong news coverage
- NLP tasks requiring Traditional Chinese text
Considerations for Using the Data
Social Impact
This dataset contains news articles covering Hong Kong current events. Users should be aware that:
- News content may reflect editorial perspectives
- Historical coverage may contain outdated information
- Some topics may be politically sensitive
Biases
- Single source (Ming Pao Canada) may have editorial biases
- Coverage focuses on Hong Kong news relevant to overseas Chinese readers
- Time period may over/under-represent certain events
Limitations
- Only includes Hong Kong News (港聞) section
- Some articles may have extraction errors
- Original images and multimedia not included
Copyright & License
⚠️ Copyright Notice
All article content in this dataset is copyrighted by Ming Pao Canada (明報加拿大).
This dataset is provided for research and educational purposes only. By using this dataset, you agree to:
- Not redistribute the content for commercial purposes
- Credit Ming Pao Canada as the original copyright holder
- Use only for non-commercial research (e.g., NLP research, language model training for academic purposes)
- Comply with applicable copyright laws in your jurisdiction
The dataset compiler does not claim any ownership over the original content and provides this dataset under fair use principles for research purposes.
If you are the copyright holder and have concerns about this dataset, please contact us.
Citation
@dataset{mingpao_canada_hk_news_2026,
title = {Ming Pao Canada Hong Kong News Corpus},
author = {hon9kon9ize},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/hon9kon9ize/mingpao-canada-hk-news},
note = {Content copyrighted by Ming Pao Canada}
}
Acknowledgements
- Ming Pao Canada (明報加拿大) - Original content copyright holder
- Downloads last month
- 5