Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,101 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
size_categories:
|
| 6 |
+
- 100K<n<1M
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# π GitHub Issues Dataset
|
| 10 |
+
[](https://huggingface.co/datasets/github-issues-dataset)
|
| 11 |
+
|
| 12 |
+
π **Dataset Name**: `github-issues-dataset`
|
| 13 |
+
π **Total Issues**: **114073**
|
| 14 |
+
π **Format**: **Parquet (`.parquet`)**
|
| 15 |
+
π **Source**: **GitHub Repositories (Top 100 Repos)**
|
| 16 |
+
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
## π Overview
|
| 20 |
+
This dataset contains **114,073 GitHub issues** collected from the **top 100 repositories** on GitHub.
|
| 21 |
+
It is designed for **issue classification, severity/priority prediction, and AI/ML training**.
|
| 22 |
+
|
| 23 |
+
### β
This dataset is useful for:
|
| 24 |
+
- **AI/ML Training**: Fine-tune models for issue classification & prioritization.
|
| 25 |
+
- **Natural Language Processing (NLP)**: Analyze software development discussions.
|
| 26 |
+
- **Bug Severity Prediction**: Train models to classify issues as **Critical, Major, or Minor**.
|
| 27 |
+
|
| 28 |
+
---
|
| 29 |
+
|
| 30 |
+
## π Dataset Structure
|
| 31 |
+
The dataset is stored in **Parquet format (`github_issues_dataset.parquet`)** for **efficient storage and fast retrieval**.
|
| 32 |
+
|
| 33 |
+
### **Columns in the Dataset:**
|
| 34 |
+
|
| 35 |
+
| Column | Type | Description |
|
| 36 |
+
|--------------|--------|-------------|
|
| 37 |
+
| `id` | `int` | Github issue id |
|
| 38 |
+
| `repo` | `str` | Repository name |
|
| 39 |
+
| `title` | `str` | Issue title |
|
| 40 |
+
| `body` | `str` | Issue description |
|
| 41 |
+
| `labels` | `list` | Assigned GitHub labels |
|
| 42 |
+
| `priority` | `str` | Estimated priority (`high`, `medium`, `low`) |
|
| 43 |
+
| `severity` | `str` | Estimated severity (`Critical`, `Major`, `Minor`) |
|
| 44 |
+
|
| 45 |
+
---
|
| 46 |
+
|
| 47 |
+
## π₯ Download & Use
|
| 48 |
+
|
| 49 |
+
### Using `datasets` Library
|
| 50 |
+
You can easily load this dataset using Hugging Face's `datasets` library:
|
| 51 |
+
|
| 52 |
+
```python
|
| 53 |
+
from datasets import load_dataset
|
| 54 |
+
|
| 55 |
+
dataset = load_dataset("sharjeelyunus/github-issues-dataset")
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
|
| 60 |
+
## π Sample Data
|
| 61 |
+
|
| 62 |
+
| id | repo | title | labels | priority | severity |
|
| 63 |
+
|------------|---------------------|-------------------------------|---------------|----------|----------|
|
| 64 |
+
| 101 | `pytorch/pytorch` | "RuntimeError: CUDA out of memory" | `["bug", "cuda"]` | high | Critical |
|
| 65 |
+
| 102 | `tensorflow/tensorflow` | "Performance degradation in v2.9" | `["performance"]` | medium | Major |
|
| 66 |
+
| 103 | `microsoft/vscode` | "UI freeze when opening large files" | `["ui", "bug"]` | low | Minor |
|
| 67 |
+
|
| 68 |
+
---
|
| 69 |
+
|
| 70 |
+
## π How This Dataset Was Created
|
| 71 |
+
1. **Collected open issues** from the **top 100 repositories** on GitHub.
|
| 72 |
+
2. **Filtered only English issues** with **assigned labels**.
|
| 73 |
+
3. **Processed priority and severity**:
|
| 74 |
+
- Used **labels** to determine **priority & severity**.
|
| 75 |
+
- Used **ML models** to predict missing priority/severity values.
|
| 76 |
+
4. **Stored dataset in Parquet format** for **ML processing**.
|
| 77 |
+
|
| 78 |
+
---
|
| 79 |
+
|
| 80 |
+
## π Use Cases
|
| 81 |
+
- **AI-Powered Bug Triage**: Train AI models to predict **priority & severity**.
|
| 82 |
+
- **NLP Research**: Analyze software engineering discussions.
|
| 83 |
+
|
| 84 |
+
---
|
| 85 |
+
|
| 86 |
+
## π License
|
| 87 |
+
This dataset is open-source and **publicly available** under the **MIT License**.
|
| 88 |
+
Please cite this dataset if you use it in research.
|
| 89 |
+
|
| 90 |
+
---
|
| 91 |
+
|
| 92 |
+
## π« Feedback & Contributions
|
| 93 |
+
- Found an issue? Open an **[issue](https://github.com/sharjeelyunus/github-issues-analyzer/issues)**.
|
| 94 |
+
- Want to contribute? Feel free to **submit a PR**.
|
| 95 |
+
- For any questions, reach out on **[Hugging Face Discussions](https://huggingface.co/datasets/github-issues-dataset/discussions)**.
|
| 96 |
+
|
| 97 |
+
---
|
| 98 |
+
|
| 99 |
+
## β Support
|
| 100 |
+
π **If you find this dataset useful, please star β the repository!**
|
| 101 |
+
π **Happy Coding!** π
|