File size: 1,171 Bytes
39fa286 806ad41 d329871 806ad41 d329871 806ad41 d329871 39fa286 d329871 39fa286 c40f54a eff8195 d329871 80432dd eff8195 80432dd c40f54a 3e87d40 c40f54a 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 |
---
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: 2080884094
num_examples: 46756
- name: zh
num_bytes: 1601593205
num_examples: 39851
- name: en
num_bytes: 4599987
num_examples: 120
- name: ar
num_bytes: 5560430
num_examples: 120
- name: es
num_bytes: 1882287335
num_examples: 44878
- name: ru
num_bytes: 5864612
num_examples: 120
download_size: 449290713
dataset_size: 5580789663
---
# 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...
``` |