Datasets:
File size: 3,822 Bytes
e0c26b3 948fb75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
---
task_categories:
- translation
language:
- eng
- spa
- fra
- heb
- ita
- jpn
- kor
- por
- rus
- tur
- zho
multilinguality:
- multilingual
configs:
- config_name: EN
data_files:
- split: train
path: "ted_talks_en.csv"
- config_name: ES
data_files:
- split: train
path: "ted_talks_es.csv"
- config_name: FR
data_files:
- split: train
path: "ted_talks_fr.csv"
- config_name: HE
data_files:
- split: train
path: "ted_talks_he.csv"
- config_name: IT
data_files:
- split: train
path: "ted_talks_it.csv"
- config_name: JA
data_files:
- split: train
path: "ted_talks_ja.csv"
- config_name: KO
data_files:
- split: train
path: "ted_talks_ko.csv"
- config_name: PT-BR
data_files:
- split: train
path: "ted_talks_pt-br.csv"
- config_name: RU
data_files:
- split: train
path: "ted_talks_ru.csv"
- config_name: TR
data_files:
- split: train
path: "ted_talks_tr.csv"
- config_name: ZH-CN
data_files:
- split: train
path: "ted_talks_zh-cn.csv"
- config_name: ZH-TW
data_files:
- split: train
path: "ted_talks_zh-tw.csv"
---
> [!NOTE]
> Dataset origin: https://www.kaggle.com/datasets/miguelcorraljr/ted-ultimate-dataset
## Context
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.
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).
## Attributes
| Attribute | Description | Data Type |
|----------------|------------------------------------------------|------------|
| talk_id | Talk identification number provided by TED | int |
| title | Title of the talk | string |
| speaker_1 | First speaker in TED's speaker list | string |
| speakers | Speakers in the talk | dictionary |
| occupations | *Occupations of the speakers | dictionary |
| about_speakers | *Blurb about each speaker | dictionary |
| views | Count of views | int |
| recorded_date | Date the talk was recorded | string |
| published_date | Date the talk was published to TED com | string |
| event | Event or medium in which the talk was given | string |
| native_lang | Language the talk was given in | string |
| available_lang | All available languages (lang_code) for a talk | list |
| comments | Count of comments | int |
| duration | Duration in seconds | int |
| topics | Related tags or topics for the talk | list |
| related_talks | Related talks (key='talk_id', value='title') | dictionary |
| url | URL of the talk | string |
| description | Description of the talk | string |
| transcript | Full transcript of the talk | string |
*The dictionary key maps to the speaker in ‘speakers’.
## Meta
Author: Miguel Corral Jr.
Email: [email protected]
LinkedIn: https://www.linkedin.com/in/iMiguel/
GitHub: https://github.com/corralm
## License
Distributed under the Creative Commons license – Attribution-NonCommercial 4.0 International (CC BY-NC 4.0). |