File size: 3,813 Bytes
beb9ccf
 
 
 
 
 
3e8a34e
 
 
 
 
 
 
 
 
 
 
beb9ccf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f630921
beb9ccf
 
 
 
f630921
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
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](https://img.shields.io/badge/HuggingFace-Dataset-yellow)](https://huggingface.co/datasets/github-issues-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:

```python
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
- Found an issue? Open an **[issue](https://github.com/sharjeelyunus/github-issues-analyzer/issues)**.
- Want to contribute? Feel free to **submit a PR**.
- For any questions, reach out on **[Hugging Face Discussions](https://huggingface.co/datasets/sharjeelyunus/github-issues-dataset/discussions)**.

---

## ⭐ Support
πŸ“Œ **If you find this dataset useful, please like ❀️ the repository!**  
πŸš€ **Happy Coding!** πŸš€