matallanas commited on
Commit
86c1754
1 Parent(s): 22832fa

Update README.md

Browse files

Added a dataset card

Files changed (1) hide show
  1. README.md +77 -6
README.md CHANGED
@@ -1,4 +1,6 @@
1
  ---
 
 
2
  dataset_info:
3
  features:
4
  - name: id
@@ -29,11 +31,80 @@ dataset_info:
29
  dtype: audio
30
  splits:
31
  - name: train
32
- num_bytes: 53105546957.0
33
- num_examples: 346
34
- download_size: 53067369354
35
- dataset_size: 53105546957.0
 
 
 
 
36
  ---
37
- # Dataset Card for "lex-fridman-podcast-transcript-ogg"
38
 
39
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - automatic-speech-recognition
4
  dataset_info:
5
  features:
6
  - name: id
 
31
  dtype: audio
32
  splits:
33
  - name: train
34
+ num_bytes: 65356108140.0
35
+ num_examples: 333
36
+ download_size: 64386861854
37
+ dataset_size: 65356108140.0
38
+ tags:
39
+ - whisper
40
+ - whispering
41
+ - medium
42
  ---
43
+ # Dataset Card for "lexFridmanPodcast-transcript-audio"
44
 
45
+ ## Table of Contents
46
+ - [Table of Contents](#table-of-contents)
47
+ - [Dataset Description](#dataset-description)
48
+ - [Dataset Summary](#dataset-summary)
49
+ - [Languages](#languages)
50
+ - [Dataset Structure](#dataset-structure)
51
+ - [Data Instances](#data-instances)
52
+ - [Data Fields](#data-fields)
53
+ - [Data Splits](#data-splits)
54
+ - [Dataset Creation](#dataset-creation)
55
+ - [Curation Rationale](#curation-rationale)
56
+ - [Source Data](#source-data)
57
+ - [Annotations](#annotations)
58
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
59
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
60
+ - [Social Impact of Dataset](#social-impact-of-dataset)
61
+ - [Discussion of Biases](#discussion-of-biases)
62
+ - [Other Known Limitations](#other-known-limitations)
63
+ - [Additional Information](#additional-information)
64
+ - [Contributions](#contributions)
65
+
66
+ ## Dataset Description
67
+
68
+ - **Homepage:** [Whispering-GPT](https://github.com/matallanas/whisper_gpt_pipeline)
69
+ - **Repository:** [whisper_gpt_pipeline](https://github.com/matallanas/whisper_gpt_pipeline)
70
+ - **Paper:** [whisper](https://cdn.openai.com/papers/whisper.pdf) and [gpt](https://s3-us-west-2.amazonaws.com/openai-assets/research-covers/language-unsupervised/language_understanding_paper.pdf)
71
+ - **Point of Contact:** [Whispering-GPT organization](https://huggingface.co/Whispering-GPT)
72
+
73
+ ### Dataset Summary
74
+
75
+ This dataset is created by applying whisper to the videos of the Youtube channel [Lex Fridman Podcast](https://www.youtube.com/watch?v=FhfmGM6hswI&list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4&ab_channel=LexFridman). The dataset was created a medium size whisper model.
76
+
77
+ ### Languages
78
+
79
+ - **Language**: English
80
+
81
+ ## Dataset Structure
82
+
83
+ The dataset contains all the transcripts plus the audio of the different videos of Lex Fridman Podcast.
84
+
85
+ ### Data Fields
86
+
87
+ The dataset is composed by:
88
+ - **id**: Id of the youtube video.
89
+ - **channel**: Name of the channel.
90
+ - **channel\_id**: Id of the youtube channel.
91
+ - **title**: Title given to the video.
92
+ - **categories**: Category of the video.
93
+ - **description**: Description added by the author.
94
+ - **text**: Whole transcript of the video.
95
+ - **segments**: A list with the time and transcription of the video.
96
+ - **start**: When started the trancription.
97
+ - **end**: When the transcription ends.
98
+ - **text**: The text of the transcription.
99
+ - **audio**: the extracted audio of the video in ogg format.
100
+
101
+ ### Data Splits
102
+ - Train split.
103
+
104
+ ## Dataset Creation
105
+ ### Source Data
106
+
107
+ The transcriptions are from the videos of [Lex Fridman Podcast](https://www.youtube.com/watch?v=FhfmGM6hswI&list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4&ab_channel=LexFridman)
108
+
109
+ ### Contributions
110
+ Thanks to [Whispering-GPT](https://huggingface.co/Whispering-GPT) organization for adding this dataset.