CoolFace
Datasetpublic

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.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes183downloads
Dataset Card

πŸ“Š 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 title
  • β€”body β€” Issue body text
  • β€”state β€” Open or closed
  • β€”created_at, updated_at, closed_at β€” Timestamps
  • β€”is_pull_request β€” Boolean flag
  • β€”user.login β€” Author
  • β€”comments β€” Count of comments
  • β€”html_url β€” URL to the issue
  • β€”pull_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

python
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])