File size: 1,267 Bytes
39fa286
 
 
806ad41
d329871
806ad41
d329871
806ad41
d329871
ec7bbcf
 
 
 
39fa286
d329871
39fa286
66cb9a9
ec7bbcf
 
 
 
 
 
 
 
368900f
ec7bbcf
368900f
66cb9a9
ec7bbcf
 
 
 
 
 
 
39fa286
 
 
753ffcc
 
3acf69b
 
753ffcc
 
3acf69b
 
a827106
3acf69b
 
 
 
 
 
 
 
 
753ffcc
3acf69b
 
 
 
 
 
f548eec
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
---
dataset_info:
  features:
  - name: uuid
    dtype: string
  - name: url
    dtype: string
  - name: title
    dtype: string
  - name: news_content
    sequence:
      sequence:
        sequence: string
  - name: html_content
    dtype: string
  splits:
  - name: ru
    num_bytes: 4612097472
    num_examples: 34774
  - name: zh
    num_bytes: 4853260847
    num_examples: 39850
  - name: en
    num_bytes: 8601079816
    num_examples: 67374
  - name: fr
    num_bytes: 6032856702
    num_examples: 46756
  - name: es
    num_bytes: 5542173377
    num_examples: 44877
  - name: ar
    num_bytes: 4731475832
    num_examples: 35807
  download_size: 14380633549
  dataset_size: 34372944046
---
# Dataset Card for "un_corpus_for_sitemap"

# How to use
```python
from datasets import load_dataset
import datasets


dataset = load_dataset('ranWang/un_corpus_for_sitemap')

#   lang_list = ['zh', 'en', 'fr', 'es', 'ru', 'ar']
for lang in dataset:
    for colum in dataset[lang]:
#       colum.keys = ['uuid', 'url', 'title', 'html_content']
#       code...

OR 

# you want to specify the language
dataset = load_dataset('ranWang/un_corpus_for_sitemap', split={lang})

for colum in dataset:
#   colum.keys = ['uuid', 'url', 'title', 'html_content']
#   code...



```