| --- |
| dataset_info: |
| features: |
| - name: html_url |
| dtype: string |
| - name: number |
| dtype: int64 |
| - name: title |
| dtype: string |
| - name: user |
| struct: |
| - name: avatar_url |
| dtype: string |
| - name: events_url |
| dtype: string |
| - name: followers_url |
| dtype: string |
| - name: following_url |
| dtype: string |
| - name: gists_url |
| dtype: string |
| - name: gravatar_id |
| dtype: string |
| - name: html_url |
| dtype: string |
| - name: id |
| dtype: int64 |
| - name: login |
| dtype: string |
| - name: node_id |
| dtype: string |
| - name: organizations_url |
| dtype: string |
| - name: received_events_url |
| dtype: string |
| - name: repos_url |
| dtype: string |
| - name: site_admin |
| dtype: bool |
| - name: starred_url |
| dtype: string |
| - name: subscriptions_url |
| dtype: string |
| - name: type |
| dtype: string |
| - name: url |
| dtype: string |
| - name: user_view_type |
| dtype: string |
| - name: labels |
| list: |
| - name: color |
| dtype: string |
| - name: default |
| dtype: bool |
| - name: description |
| dtype: string |
| - name: id |
| dtype: int64 |
| - name: name |
| dtype: string |
| - name: node_id |
| dtype: string |
| - name: url |
| dtype: string |
| - name: state |
| dtype: string |
| - name: locked |
| dtype: bool |
| - name: comments |
| list: string |
| - name: created_at |
| dtype: timestamp[ns, tz=UTC] |
| - name: updated_at |
| dtype: timestamp[ns, tz=UTC] |
| - name: closed_at |
| dtype: timestamp[ns, tz=UTC] |
| - name: author_association |
| dtype: string |
| - name: draft |
| dtype: bool |
| - name: pull_request |
| struct: |
| - name: diff_url |
| dtype: string |
| - name: html_url |
| dtype: string |
| - name: merged_at |
| dtype: string |
| - name: patch_url |
| dtype: string |
| - name: url |
| dtype: string |
| - name: body |
| dtype: string |
| - name: closed_by |
| struct: |
| - name: avatar_url |
| dtype: string |
| - name: events_url |
| dtype: string |
| - name: followers_url |
| dtype: string |
| - name: following_url |
| dtype: string |
| - name: gists_url |
| dtype: string |
| - name: gravatar_id |
| dtype: string |
| - name: html_url |
| dtype: string |
| - name: id |
| dtype: int64 |
| - name: login |
| dtype: string |
| - name: node_id |
| dtype: string |
| - name: organizations_url |
| dtype: string |
| - name: received_events_url |
| dtype: string |
| - name: repos_url |
| dtype: string |
| - name: site_admin |
| dtype: bool |
| - name: starred_url |
| dtype: string |
| - name: subscriptions_url |
| dtype: string |
| - name: type |
| dtype: string |
| - name: url |
| dtype: string |
| - name: user_view_type |
| dtype: string |
| - name: reactions |
| struct: |
| - name: '+1' |
| dtype: int64 |
| - name: '-1' |
| dtype: int64 |
| - name: confused |
| dtype: int64 |
| - name: eyes |
| dtype: int64 |
| - name: heart |
| dtype: int64 |
| - name: hooray |
| dtype: int64 |
| - name: laugh |
| dtype: int64 |
| - name: rocket |
| dtype: int64 |
| - name: total_count |
| dtype: int64 |
| - name: url |
| dtype: string |
| - name: state_reason |
| dtype: string |
| - name: sub_issues_summary |
| struct: |
| - name: completed |
| dtype: int64 |
| - name: percent_completed |
| dtype: int64 |
| - name: total |
| dtype: int64 |
| - name: issue_dependencies_summary |
| struct: |
| - name: blocked_by |
| dtype: int64 |
| - name: blocking |
| dtype: int64 |
| - name: total_blocked_by |
| dtype: int64 |
| - name: total_blocking |
| dtype: int64 |
| - name: is_pull_request |
| dtype: bool |
| splits: |
| - name: train |
| num_bytes: 41924490 |
| num_examples: 7770 |
| download_size: 11974249 |
| dataset_size: 41924490 |
| configs: |
| - config_name: default |
| data_files: |
| - split: train |
| path: data/train-* |
| task_categories: |
| - text-classification |
| - text-retrieval |
| language: |
| - en |
| tags: |
| - code |
| size_categories: |
| - 1K<n<10K |
| --- |
| # Dataset Card for Dataset Name |
|
|
| <!-- Provide a quick summary of the dataset. --> |
|
|
| This dataset is an upload linked with the [HuggingFace LLM course, chapter 5](https://huggingface.co/learn/llm-course/chapter5). The goal was to create an own dataset and upload it to the Dataset Hub. |
|
|
| ## Dataset Details |
|
|
| ### Dataset Description |
|
|
| <!-- Provide a longer summary of what this dataset is. --> |
| This dataset contains issues from the [HuggingFace Dataset GitHub page](https://github.com/huggingface/datasets) (as of 05-11-2025). |
| Pull issues as well as irrelevant API data were filtered out. The content of the comments on any issue were added. |
|
|
| ## Uses |
|
|
| The dataset can be used for simple text classification or text retrieval tasks. Summarization tasks are also possible. |
|
|
| ## Dataset Structure |
|
|
| <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. --> |
| Structure of Dataset: |
| Dataset({ |
| features: ['url', 'repository_url', 'labels_url', 'comments_url', 'events_url', 'html_url', 'id', 'node_id', 'number', 'title', 'user', 'labels', 'state', 'locked', 'assignee', 'assignees', 'milestone', 'comments', 'created_at', 'updated_at', 'closed_at', 'author_association', 'active_lock_reason', 'pull_request', 'body', 'timeline_url', 'performed_via_github_app', 'is_pull_request'], |
| num_rows: 3019 |
| }) |
| |