vivianchen98 commited on
Commit
5af8aa7
·
verified ·
1 Parent(s): 7d0bbdd

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +49 -5
README.md CHANGED
@@ -1,6 +1,6 @@
1
  # LearningPaper24 Dataset
2
 
3
- This dataset contains video recordings and metadata from ICLR and NIPS 2024 conference talks. It includes both poster and oral presentations, along with their associated metadata such as titles, abstracts, and keywords.
4
 
5
  ## Dataset Structure
6
 
@@ -33,6 +33,23 @@ The catalog contains metadata for each talk in JSON format with the following fi
33
  ### Videos
34
  Videos are stored in the `video` directory with filenames following the format: `{openreview_id}_{slideslive_id}.mp4`
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  ## Purpose
37
 
38
  This dataset can be used for:
@@ -40,11 +57,38 @@ This dataset can be used for:
40
  - Natural language processing tasks
41
  - Video-text alignment studies
42
 
43
- <!-- ## Dataset Statistics
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
- [To be added: Include statistics about number of videos, duration, distribution of presentation types, etc.]
 
 
 
 
 
 
 
 
 
 
 
46
 
47
- !-->
48
 
49
  ## License
50
 
@@ -56,7 +100,7 @@ If you use this dataset, please cite:
56
  ```
57
  @misc{learningpaper24,
58
  author = {[Your Name]},
59
- title = {LearningPaper24: A Dataset of ICLR and NIPS 2024 Conference Talks},
60
  year = {2024},
61
  publisher = {Hugging Face},
62
  journal = {Hugging Face Hub},
 
1
  # LearningPaper24 Dataset
2
 
3
+ This dataset contains video recordings and metadata from ICLR and NeurIPS 2024 conference talks. It includes both poster and oral presentations, along with their associated metadata such as titles, abstracts, and keywords.
4
 
5
  ## Dataset Structure
6
 
 
33
  ### Videos
34
  Videos are stored in the `video` directory with filenames following the format: `{openreview_id}_{slideslive_id}.mp4`
35
 
36
+ ## Usage
37
+ For easy access to the dataset, you can use the HuggingFace Datasets library. Here's a simple example to load and explore the dataset:
38
+ ```python
39
+ from datasets import load_dataset
40
+ dataset = load_dataset("vivianchen98/LearningPaper24", data_files="metadata/catalog.jsonl", split="train")
41
+
42
+ for i in range(3):
43
+ print(f"\nSAMPLE {i + 1}")
44
+ print("-" * 30)
45
+ print(f"Video file: video/{dataset[i].get('video_file', 'N/A')}")
46
+ print(f"TL;DR: {dataset[i].get('tldr', 'N/A')}")
47
+ print(f"Primary area: {dataset[i].get('primary_area', 'N/A')}")
48
+ print("=" * 50)
49
+ ```
50
+
51
+ You can also use the example code provided in `example.py` for more systematic data exploration.
52
+
53
  ## Purpose
54
 
55
  This dataset can be used for:
 
57
  - Natural language processing tasks
58
  - Video-text alignment studies
59
 
60
+ ## Dataset Statistics
61
+
62
+ The LearningPaper24 dataset contains a diverse collection of machine learning conference presentations:
63
+
64
+ ### Overview
65
+ - 📊 **Total entries**: 2,287 conference talks
66
+
67
+ ### Presentation Types
68
+ - 📝 **Poster presentations**: 1,986 (86.8%)
69
+ - 🔍 **Spotlight presentations**: 256 (11.2%)
70
+ - 🎤 **Oral presentations**: 45 (2.0%)
71
+
72
+ ### Conference Distribution
73
+ - 🏢 **NeurIPS 2024**: 1,726 talks (75.5%)
74
+ - 🏢 **ICLR 2024**: 561 talks (24.5%)
75
+
76
+ ### Research Areas
77
+ The dataset covers a wide range of machine learning topics, with the top 10 research areas being:
78
 
79
+ | Research Area | Count | Percentage |
80
+ |---------------|-------|------------|
81
+ | Machine Vision | 218 | 9.5% |
82
+ | Reinforcement Learning | 125 | 5.5% |
83
+ | Natural Language Processing | 123 | 5.4% |
84
+ | Optimization | 112 | 4.9% |
85
+ | Learning Theory | 111 | 4.9% |
86
+ | Diffusion-based Models | 87 | 3.8% |
87
+ | Deep Learning Architectures | 79 | 3.5% |
88
+ | Generative Models | 79 | 3.5% |
89
+ | Probabilistic Methods | 74 | 3.2% |
90
+ | Generative Models | 74 | 3.2% |
91
 
 
92
 
93
  ## License
94
 
 
100
  ```
101
  @misc{learningpaper24,
102
  author = {[Your Name]},
103
+ title = {LearningPaper24: A Dataset of ICLR and NeurIPS 2024 Conference Talks},
104
  year = {2024},
105
  publisher = {Hugging Face},
106
  journal = {Hugging Face Hub},