sharjeelyunus's picture
Update README.md
3e8a34e verified
|
raw
history blame
3.8 kB
metadata
license: mit
language:
  - en
size_categories:
  - 100K<n<1M
task_categories:
  - text-classification
  - text-retrieval
tags:
  - github
  - issues
  - bug-tracking
  - multi-label
  - priority-classification
  - severity-classification
pretty_name: GitHub Issues Dataset

πŸ“Œ GitHub Issues Dataset

Hugging Face Dataset

πŸ“‚ Dataset Name: github-issues-dataset
πŸ“Š Total Issues: 114073
πŸ“œ Format: Parquet (.parquet)
πŸ” Source: GitHub Repositories (Top 100 Repos)


πŸ“– Overview

This dataset contains 114,073 GitHub issues collected from the top 100 repositories on GitHub.
It is designed for issue classification, severity/priority prediction, and AI/ML training.

βœ… This dataset is useful for:

  • AI/ML Training: Fine-tune models for issue classification & prioritization.
  • Natural Language Processing (NLP): Analyze software development discussions.
  • Bug Severity Prediction: Train models to classify issues as Critical, Major, or Minor.

πŸ“‚ Dataset Structure

The dataset is stored in Parquet format (github_issues_dataset.parquet) for efficient storage and fast retrieval.

Columns in the Dataset:

Column Type Description
id int Github issue id
repo str Repository name
title str Issue title
body str Issue description
labels list Assigned GitHub labels
priority str Estimated priority (high, medium, low)
severity str Estimated severity (Critical, Major, Minor)

πŸ“₯ Download & Use

Using datasets Library

You can easily load this dataset using Hugging Face's datasets library:

from datasets import load_dataset

dataset = load_dataset("sharjeelyunus/github-issues-dataset")

πŸ“Š Sample Data

id repo title labels priority severity
101 pytorch/pytorch "RuntimeError: CUDA out of memory" ["bug", "cuda"] high Critical
102 tensorflow/tensorflow "Performance degradation in v2.9" ["performance"] medium Major
103 microsoft/vscode "UI freeze when opening large files" ["ui", "bug"] low Minor

πŸ›  How This Dataset Was Created

  1. Collected open issues from the top 100 repositories on GitHub.
  2. Filtered only English issues with assigned labels.
  3. Processed priority and severity:
    • Used labels to determine priority & severity.
    • Used ML models to predict missing priority/severity values.
  4. Stored dataset in Parquet format for ML processing.

πŸ” Use Cases

  • AI-Powered Bug Triage: Train AI models to predict priority & severity.
  • NLP Research: Analyze software engineering discussions.

πŸ“œ License

This dataset is open-source and publicly available under the MIT License.
Please cite this dataset if you use it in research.


πŸ“« Feedback & Contributions


⭐ Support

πŸ“Œ If you find this dataset useful, please star ⭐ the repository!
πŸš€ Happy Coding! πŸš€