helmo commited on
Commit
e344be7
·
verified ·
1 Parent(s): 086dd71

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +210 -0
README.md CHANGED
@@ -350,4 +350,214 @@ configs:
350
  data_files:
351
  - split: train
352
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
353
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  data_files:
351
  - split: train
352
  path: data/train-*
353
+ license: apache-2.0
354
+ task_categories:
355
+ - text-classification
356
+ - text-generation
357
+ - question-answering
358
+ language:
359
+ - en
360
+ tags:
361
+ - github
362
+ pretty_name: HuggingFace Datasets Repository Issues
363
+ size_categories:
364
+ - 1K<n<10K
365
  ---
366
+
367
+
368
+ # HuggingFace Datasets Repository Issues
369
+
370
+ ## Dataset Description
371
+
372
+ This dataset contains issues and pull requests from the [huggingface/datasets](https://github.com/huggingface/datasets) repository, collected via the GitHub API. Each entry includes comprehensive metadata about the issue/PR along with all associated comments, making it valuable for studying software development patterns, issue resolution processes, and community interactions in open-source projects.
373
+
374
+ ### Dataset Summary
375
+
376
+ - **Repository**: huggingface/datasets
377
+ - **Total Issues/PRs**: 7,540
378
+ - **Date Collected**: June 13, 2025
379
+ - **Language**: English
380
+ - **License**: Apache 2.0
381
+
382
+ The dataset includes both open and closed issues/pull requests with their complete comment threads, providing rich context for understanding how software issues are discussed and resolved in a major open-source machine learning library.
383
+
384
+ ### Supported Tasks and Leaderboards
385
+
386
+ This dataset can be used for various NLP and software engineering research tasks:
387
+
388
+ - **Text Classification**: Categorizing issues by type (bug, feature request, question, etc.)
389
+ - **Sentiment Analysis**: Analyzing the tone of issue discussions
390
+ - **Text Generation**: Generating responses to software issues
391
+ - **Question Answering**: Extracting answers from issue discussions
392
+ - **Software Engineering Research**: Studying issue resolution patterns, community interactions, and development workflows
393
+
394
+ ### Languages
395
+
396
+ The dataset is primarily in English, as it contains issues from an English-speaking open-source community.
397
+
398
+ ## Dataset Structure
399
+
400
+ ### Data Instances
401
+
402
+ Each instance represents a single GitHub issue or pull request with the following structure:
403
+
404
+ ```json
405
+ {
406
+ "number": 7613,
407
+ "title": "fix parallel push_to_hub in dataset_dict",
408
+ "body": "Description of the issue...",
409
+ "state": "open",
410
+ "user": {
411
+ "login": "username",
412
+ "id": 12345,
413
+ ...
414
+ },
415
+ "labels": [
416
+ {
417
+ "name": "bug",
418
+ "color": "d73a4a",
419
+ ...
420
+ }
421
+ ],
422
+ "comments": [
423
+ "First comment text...",
424
+ "Second comment text...",
425
+ ...
426
+ ],
427
+ "created_at": "2025-06-13T09:02:24Z",
428
+ "updated_at": "2025-06-13T10:38:04Z",
429
+ "pull_request": {
430
+ "url": "https://api.github.com/repos/huggingface/datasets/pulls/7613",
431
+ ...
432
+ },
433
+ ...
434
+ }
435
+ ```
436
+
437
+ ### Data Fields
438
+
439
+ - **number** (int64): Issue/PR number
440
+ - **title** (string): Title of the issue/PR
441
+ - **body** (string): Main description/content
442
+ - **state** (string): Current state (open/closed)
443
+ - **user** (struct): Information about the user who created the issue
444
+ - **labels** (list): Labels assigned to the issue
445
+ - **comments** (sequence): List of all comment texts
446
+ - **created_at** (timestamp): Creation timestamp
447
+ - **updated_at** (timestamp): Last update timestamp
448
+ - **closed_at** (timestamp): Closure timestamp (if closed)
449
+ - **pull_request** (struct): PR-specific metadata (if applicable)
450
+ - **assignee/assignees** (struct/list): Assigned users
451
+ - **milestone** (struct): Associated milestone information
452
+ - **reactions** (struct): Reaction counts (+1, -1, etc.)
453
+ - **author_association** (string): Relationship to repository (OWNER, CONTRIBUTOR, etc.)
454
+
455
+ ### Data Splits
456
+
457
+ The dataset contains a single split:
458
+
459
+ - **train**: 7,540 issues/pull requests
460
+
461
+ ## Dataset Creation
462
+
463
+ ### Curation Rationale
464
+
465
+ This dataset was created to provide researchers and developers with real-world examples of software issue discussions and resolutions from a popular machine learning library. It can help understand:
466
+
467
+ - How technical issues are communicated and resolved
468
+ - Patterns in community interaction and support
469
+ - Evolution of software projects through issue tracking
470
+ - Natural language patterns in technical documentation
471
+
472
+ ### Source Data
473
+
474
+ #### Initial Data Collection and Normalization
475
+
476
+ The data was collected using the GitHub API v4, specifically targeting the `huggingface/datasets` repository. The collection process:
477
+
478
+ 1. **Issues Retrieval**: All issues and pull requests were fetched using paginated API calls
479
+ 2. **Comments Collection**: For each issue/PR, all associated comments were retrieved
480
+ 3. **Data Processing**: The raw JSON responses were processed and structured into a consistent format
481
+ 4. **Timestamp Handling**: All timestamps were normalized to UTC format
482
+
483
+ #### Who are the source language producers?
484
+
485
+ The language producers are contributors to the HuggingFace datasets library, including:
486
+ - HuggingFace team members and maintainers
487
+ - Open-source contributors from the global developer community
488
+ - Users reporting bugs and requesting features
489
+ - Community members providing support and discussions
490
+
491
+ ### Annotations
492
+
493
+ #### Annotation process
494
+
495
+ No additional annotations were added beyond the existing GitHub metadata (labels, assignees, milestones, etc.) that were already present in the repository.
496
+
497
+ #### Who are the annotators?
498
+
499
+ The repository maintainers and contributors who applied labels and other metadata during normal issue management processes.
500
+
501
+ ### Personal and Sensitive Information
502
+
503
+ The dataset contains publicly available information from GitHub issues. While no intentionally sensitive information should be present, users should be aware that:
504
+
505
+ - GitHub usernames and profile information are included
506
+ - Some issues might contain system information, file paths, or configuration details
507
+ - Email addresses might appear in code snippets or error messages
508
+
509
+ ## Considerations for Using the Data
510
+
511
+ ### Social Impact of Dataset
512
+
513
+ This dataset can contribute positively to software engineering research and education by providing insights into collaborative development processes. However, users should consider:
514
+
515
+ - **Privacy**: Respect the public nature of the data and avoid any analysis that could harm individual contributors
516
+ - **Context**: Issues represent specific technical problems and may not generalize to all software projects
517
+ - **Bias**: The dataset reflects the specific community and practices of the HuggingFace ecosystem
518
+
519
+ ### Discussion of Biases
520
+
521
+ Potential biases in the dataset include:
522
+
523
+ - **Language Bias**: Primarily English-language content
524
+ - **Domain Bias**: Focused on machine learning/data science library issues
525
+ - **Community Bias**: Reflects the practices and communication style of the HuggingFace community
526
+ - **Temporal Bias**: Represents issues from a specific time period in the project's evolution
527
+ - **Technical Bias**: May over-represent certain types of technical issues common in ML libraries
528
+
529
+ ### Other Known Limitations
530
+
531
+ - The dataset represents a snapshot from June 13, 2025, and doesn't include subsequent updates
532
+ - Comment threads are included as lists but don't preserve detailed threading structure
533
+ - Some metadata fields may be incomplete for older issues
534
+ - The dataset doesn't include private repository discussions or communications
535
+
536
+ ## Additional Information
537
+
538
+ ### Dataset Curators
539
+
540
+ This dataset was curated by [Hélder Monteiro](https://huggingface.co/helmo) by extracting and processing public information from the HuggingFace datasets repository using the GitHub API.
541
+
542
+ ### Licensing Information
543
+
544
+ This dataset is licensed under the Apache 2.0 License, consistent with the open-source nature of the original repository.
545
+
546
+ ### Citation Information
547
+
548
+ ```bibtex
549
+ @dataset{monteiro_huggingface_datasets_issues_2025,
550
+ title={HuggingFace Datasets Repository Issues},
551
+ author={Hélder Monteiro},
552
+ year={2025},
553
+ month={June},
554
+ url={https://huggingface.co/datasets/helmo/github-issues},
555
+ note={Issues and pull requests from huggingface/datasets repository collected and curated via GitHub API}
556
+ }
557
+ ```
558
+
559
+ ### Disclaimer
560
+
561
+ This dataset contains content created by the HuggingFace community members who opened issues, submitted pull requests, and participated in discussions on the datasets repository. While this dataset compilation is provided as it is, all original content belongs to the respective contributors.
562
+
563
+ For questions about this dataset or to report issues, please open an issue in the dataset repository or contact the dataset maintainers.