rIsHu009/github-issues-updated
π GitHub Issues Dataset (HuggingFace/datasets Repository) This dataset contains structured GitHub issues scraped from the huggingface/datasets repository. It is intended for NLP tasks, topic modeling, issue classification, and software engineering research. π Dataset Summary Repository Source: huggingface/datasets Scraped via: GitHub REST API v3 Total Issues: ~7,465 Collected On: June 25, 2025 Format: JSONL β loaded via Arrow for Hugging Face Language: Englishβ¦ See the full description on the dataset page: https://huggingface.co/datasets/rIsHu009/github-issues-updated.
π GitHub Issues Dataset (HuggingFace/datasets Repository)
This dataset contains structured GitHub issues scraped from the `huggingface/datasets` repository. It is intended for NLP tasks, topic modeling, issue classification, and software engineering research.
π Dataset Summary
- Repository Source:
huggingface/datasets - Scraped via: GitHub REST API v3
- Total Issues: ~7,465
- Collected On: June 25, 2025
- Format:
JSONLβ loaded via Arrow for Hugging Face - Language: English
π Fields Included
Each entry contains:
titleβ Issue titlebodyβ Issue body textstateβ Open or closedcreated_at,updated_at,closed_atβ Timestampsis_pull_requestβ Boolean flaguser.loginβ Authorcommentsβ Count of commentshtml_urlβ URL to the issuepull_request.*β Nested fields when issue is a PR
βοΈ How It Was Created
Issues were scraped using Pythonβs requests library with pagination (per_page=100). The dataset was flattened to remove deep nesting and improve usability with machine learning models.
All entries were saved to .jsonl, loaded into a Hugging Face DatasetDict using load_dataset, and then pushed to the π€ Hub.
π‘ Example Usage
from datasets import load_dataset
# Load the dataset from the Hugging Face Hub
ds = load_dataset("rIsHu009/github-issues-updated", split="train")
# Access a sample record
print(ds[0])
