File size: 1,154 Bytes
39fa286 806ad41 d329871 806ad41 d329871 806ad41 d329871 39fa286 d329871 39fa286 80432dd d329871 80432dd b43afbb 80432dd c874a71 80432dd d329871 80432dd 39fa286 753ffcc 3acf69b 753ffcc 3acf69b a827106 3acf69b 753ffcc 3acf69b 753ffcc |
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 |
---
dataset_info:
features:
- name: uuid
dtype: string
- name: url
dtype: string
- name: title
dtype: string
- name: html_content
dtype: string
splits:
- name: fr
num_bytes: 5059295
num_examples: 120
- name: ru
num_bytes: 5864612
num_examples: 120
- name: zh
num_bytes: 4547420
num_examples: 120
- name: ar
num_bytes: 5560430
num_examples: 120
- name: en
num_bytes: 4599987
num_examples: 120
- name: es
num_bytes: 5021837
num_examples: 120
download_size: 8054925
dataset_size: 30653581
---
# 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...
```
|