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