hieunguyen1053 commited on
Commit
62aff9a
1 Parent(s): 751a6f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -4
README.md CHANGED
@@ -5,11 +5,27 @@ dataset_info:
5
  dtype: string
6
  splits:
7
  - name: train
8
- num_bytes: 27242341.0
9
  num_examples: 2293
10
  download_size: 15366817
11
- dataset_size: 27242341.0
 
 
 
 
 
 
 
 
12
  ---
13
- # Dataset Card for "en_ted_talks_iwslt"
14
 
15
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
5
  dtype: string
6
  splits:
7
  - name: train
8
+ num_bytes: 27242341
9
  num_examples: 2293
10
  download_size: 15366817
11
+ dataset_size: 27242341
12
+ task_categories:
13
+ - text-generation
14
+ language:
15
+ - en
16
+ tags:
17
+ - LM
18
+ size_categories:
19
+ - 1K<n<10K
20
  ---
21
+ # Ted Talks
22
 
23
+ - Source: https://huggingface.co/datasets/ted_talks_iwslt
24
+ - Num examples: 2,293
25
+ - Language: English
26
+
27
+ ```python
28
+ from datasets import load_dataset
29
+
30
+ load_dataset("tdtunlp/ted_talks_iwslt_en")
31
+ ```