Update README.md
Browse files
README.md
CHANGED
@@ -28,18 +28,35 @@ size_categories:
|
|
28 |
- 1M<n<10M
|
29 |
---
|
30 |
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
-
|
34 |
|
35 |
-
The
|
36 |
|
37 |
-
|
38 |
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
-
|
|
|
|
|
|
|
|
|
43 |
|
44 |
This is till now and they are the issues which are not pull requests.
|
45 |
|
@@ -50,26 +67,43 @@ num_rows: 2893
|
|
50 |
|
51 |
|
52 |
|
53 |
-
Data Instances
|
54 |
-
{"html_url":"https:\/\/github.com\/huggingface\/datasets\/issues\/7079","title":"HfHubHTTPError: 500 Server Error: Internal Server Error for url:","comments":["same issue here.
|
55 |
-
....................................... list of all comments csv ],"body":"### Describe the bug\n\nnewly uploaded datasets, since yesterday, yields an error.\r\n\r\.............. body describing the issue```","number":7079}
|
56 |
|
57 |
-
Data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
|
|
|
60 |
|
61 |
-
|
|
|
|
|
|
|
|
|
62 |
|
63 |
|
64 |
Source Data
|
65 |
-
The
|
66 |
|
67 |
Initial Data Collection and Normalization
|
|
|
68 |
|
69 |
-
|
|
|
70 |
|
71 |
-
|
|
|
72 |
|
73 |
-
|
74 |
|
75 |
-
|
|
|
|
28 |
- 1M<n<10M
|
29 |
---
|
30 |
|
31 |
+
---
|
32 |
+
title: GitHub Issues Dataset for Semantic Search
|
33 |
+
author: Aman Agrawal
|
34 |
+
contact: [email protected]
|
35 |
+
---
|
36 |
+
|
37 |
+
## Dataset Summary
|
38 |
+
|
39 |
+
This dataset was created following the last two sections of Chapter 5 from the Hugging Face NLP course. The course outlined steps to create a dataset for building a semantic search system using GitHub issues from the Hugging Face `datasets` repository. However, during the creation process, several challenges were encountered, including handling null values and timestamp-related errors. This dataset was refined by focusing on fields relevant to semantic search, such as `html_url`, `title`, `body`, `comments`, and `issue number`.
|
40 |
|
41 |
+
### Purpose
|
42 |
|
43 |
+
The dataset supports the development of an asymmetric semantic search application, which involves short queries and longer paragraphs that address these queries, specifically for issues related to Hugging Face datasets.
|
44 |
|
45 |
+
## Dataset Info
|
46 |
|
47 |
+
- **Configuration Name**: default
|
48 |
+
- **Splits**:
|
49 |
+
- Train Split
|
50 |
+
- **Number of Bytes**: 10108947
|
51 |
+
- **Number of Examples**: 2893
|
52 |
+
- **Download Size**: 4360781 bytes
|
53 |
+
- **Total Dataset Size**: 10108947 bytes
|
54 |
|
55 |
+
## Languages
|
56 |
+
|
57 |
+
This dataset is entirely in English, encompassing all titles, bodies, and comments from the issues of the Hugging Face datasets.
|
58 |
+
|
59 |
+
## Dataset Structure
|
60 |
|
61 |
This is till now and they are the issues which are not pull requests.
|
62 |
|
|
|
67 |
|
68 |
|
69 |
|
|
|
|
|
|
|
70 |
|
71 |
+
## Data Instances
|
72 |
+
|
73 |
+
An example data instance looks like this:
|
74 |
+
|
75 |
+
```json
|
76 |
+
{
|
77 |
+
"html_url": "https://github.com/huggingface/datasets/issues/7079",
|
78 |
+
"title": "HfHubHTTPError: 500 Server Error: Internal Server Error for url:",
|
79 |
+
"comments": ["same issue here. ... list of all comments csv"],
|
80 |
+
"body": "### Describe the bug\n\nnewly uploaded datasets, since yesterday, yields an error.\r\n\r\n...body describing the issue",
|
81 |
+
"number": 7079
|
82 |
+
}
|
83 |
|
84 |
+
Data Fields
|
85 |
+
The dataset includes the following fields:
|
86 |
|
87 |
+
html_url: URL of the GitHub issue (string).
|
88 |
+
title: Title of the issue (string).
|
89 |
+
comments: Sequence of comments made on the issue (list of strings).
|
90 |
+
body: Detailed description of the issue (string).
|
91 |
+
number: GitHub issue number (int64).
|
92 |
|
93 |
|
94 |
Source Data
|
95 |
+
The dataset is crafted from scratch using the GitHub REST API, focusing on open issues from the Hugging Face datasets repository.
|
96 |
|
97 |
Initial Data Collection and Normalization
|
98 |
+
The creation of this dataset involved handling over 5000 issues, which exceeds the GitHub REST API's rate limit of 5000 requests per hour. Additionally, extracting comments required significant computational resources, highlighting the involvement of both automated processes and manual oversight.
|
99 |
|
100 |
+
Considerations
|
101 |
+
This dataset is tailored for creating a semantic search application centered around GitHub issues. It does not contain data on pull requests, which may limit its applicability for tasks requiring such information.
|
102 |
|
103 |
+
vbnet
|
104 |
+
Copy code
|
105 |
|
106 |
+
### Additional Notes
|
107 |
|
108 |
+
Anyone deeply engaged with the Hugging Face NLP course might attempt to create this dataset. While it's accessible remotely as described in the course, this specific version focuses solely on supporting semantic search applications. Other uses may require a dataset with broader field coverage.
|
109 |
+
This README is designed to be clear and informative, providing all necessary details about the dataset in a structured manner.
|