Alwin-Yang/bmw-pressclub-news
BMW PressClub News Dataset This dataset contains press releases and news articles scraped from BMW PressClub. Dataset Structure JSON Format (bmw_articles.json) { "scraped_at": "2025-12-17T10:00:00", "source": "https://www.press.bmwgroup.com/global/article", "count": 100, "articles": [ { "title": "BMW presents the new X5", "date": "17.12.2025", "article_type": "Press Release", "summary": "...", "tags": ["BMW… See the full description on the dataset page: https://huggingface.co/datasets/Alwin-Yang/bmw-pressclub-news.
BMW PressClub News Dataset
This dataset contains press releases and news articles scraped from BMW PressClub.
Dataset Description
- Source: BMW PressClub Global
- Language: English
- Last Updated: 2026-03-16
- Total Articles: 100
Dataset Structure
JSON Format (bmw_articles.json)
{
"scraped_at": "2025-12-17T10:00:00",
"source": "https://www.press.bmwgroup.com/global/article",
"count": 100,
"articles": [
{
"title": "BMW presents the new X5",
"date": "17.12.2025",
"article_type": "Press Release",
"summary": "...",
"tags": ["BMW X5", "SUV"],
"url": "https://...",
"content": "Full article text..."
}
]
}JSONL Training Format (bmw_training.jsonl)
Each line is a training sample in Alpaca format:
{"instruction": "Read the following BMW press release...", "input": "Full article content...", "output": "Title: ... Summary: ..."}Usage
Load with Hugging Face Datasets
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Alwin-Yang/bmw-pressclub-news")
# Access articles
for article in dataset["train"]:
print(article["title"])Load JSON directly
import json
from huggingface_hub import hf_hub_download
# Download and load
file_path = hf_hub_download(repo_id="Alwin-Yang/bmw-pressclub-news", filename="bmw_articles.json", repo_type="dataset")
with open(file_path) as f:
data = json.load(f)Intended Use
This dataset is intended for:
- Fine-tuning LLMs on automotive/BMW domain knowledge
- Training summarization models
- Research on automotive industry communication
License
MIT License. Original content is from BMW Group and subject to their terms of use.
Updates
This dataset is automatically updated via GitHub Actions.
