de-francophones commited on
Commit
948fb75
·
verified ·
1 Parent(s): 42a85b8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +111 -0
README.md ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - translation
4
+ language:
5
+ - en
6
+ - es
7
+ - fr
8
+ - he
9
+ - it
10
+ - ja
11
+ - ko
12
+ - pt
13
+ - ru
14
+ - tr
15
+ - zh
16
+ - multilingual
17
+ configs:
18
+ - config_name: EN
19
+ data_files:
20
+ - split: train
21
+ path: "ted_talks_en.csv"
22
+ - config_name: ES
23
+ data_files:
24
+ - split: train
25
+ path: "ted_talks_es.csv"
26
+ - config_name: FR
27
+ data_files:
28
+ - split: train
29
+ path: "ted_talks_fr.csv"
30
+ - config_name: HE
31
+ data_files:
32
+ - split: train
33
+ path: "ted_talks_he.csv"
34
+ - config_name: IT
35
+ data_files:
36
+ - split: train
37
+ path: "ted_talks_it.csv"
38
+ - config_name: JA
39
+ data_files:
40
+ - split: train
41
+ path: "ted_talks_ja.csv"
42
+ - config_name: KO
43
+ data_files:
44
+ - split: train
45
+ path: "ted_talks_ko.csv"
46
+ - config_name: PT-BR
47
+ data_files:
48
+ - split: train
49
+ path: "ted_talks_pt-br.csv"
50
+ - config_name: RU
51
+ data_files:
52
+ - split: train
53
+ path: "ted_talks_ru.csv"
54
+ - config_name: TR
55
+ data_files:
56
+ - split: train
57
+ path: "ted_talks_tr.csv"
58
+ - config_name: ZH-CN
59
+ data_files:
60
+ - split: train
61
+ path: "ted_talks_zh-cn.csv"
62
+ - config_name: ZH-TW
63
+ data_files:
64
+ - split: train
65
+ path: "ted_talks_zh-tw.csv"
66
+ ---
67
+
68
+ > [!NOTE]
69
+ > Dataset origin: https://www.kaggle.com/datasets/miguelcorraljr/ted-ultimate-dataset
70
+
71
+
72
+ ## Context
73
+
74
+ TED is devoted to spreading powerful ideas in just about any topic. These datasets contain over 4,000 TED talks including transcripts in many languages.
75
+
76
+ If you would like a dataset for a language that is not listed below or a in a different file format (JSON, SQL, etc.), please checkout my Python module – [TEDscraper](https://github.com/corralm/ted-scraper).
77
+
78
+ ## Attributes
79
+ | Attribute | Description | Data Type |
80
+ |----------------|------------------------------------------------|------------|
81
+ | talk_id | Talk identification number provided by TED | int |
82
+ | title | Title of the talk | string |
83
+ | speaker_1 | First speaker in TED's speaker list | string |
84
+ | speakers | Speakers in the talk | dictionary |
85
+ | occupations | *Occupations of the speakers | dictionary |
86
+ | about_speakers | *Blurb about each speaker | dictionary |
87
+ | views | Count of views | int |
88
+ | recorded_date | Date the talk was recorded | string |
89
+ | published_date | Date the talk was published to TED com | string |
90
+ | event | Event or medium in which the talk was given | string |
91
+ | native_lang | Language the talk was given in | string |
92
+ | available_lang | All available languages (lang_code) for a talk | list |
93
+ | comments | Count of comments | int |
94
+ | duration | Duration in seconds | int |
95
+ | topics | Related tags or topics for the talk | list |
96
+ | related_talks | Related talks (key='talk_id', value='title') | dictionary |
97
+ | url | URL of the talk | string |
98
+ | description | Description of the talk | string |
99
+ | transcript | Full transcript of the talk | string |
100
+
101
+ *The dictionary key maps to the speaker in ‘speakers’.
102
+
103
+ ## Meta
104
+
105
+ Author: Miguel Corral Jr.
106
107
+ LinkedIn: https://www.linkedin.com/in/iMiguel/
108
+ GitHub: https://github.com/corralm
109
+
110
+ ## License
111
+ Distributed under the Creative Commons license – Attribution-NonCommercial 4.0 International (CC BY-NC 4.0).