File size: 1,064 Bytes
bc5e157 41d2a6b da33e32 |
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 |
---
dataset_info:
features:
- name: number
dtype: string
- name: article
dtype: string
- name: prefix
dtype: string
- name: content
dtype: string
splits:
- name: train
num_bytes: 1032806695
num_examples: 514936
download_size: 297782905
dataset_size: 1032806695
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
license: apache-2.0
language:
- vi
tags:
- vietnamese
- law
- legal
size_categories:
- 100K<n<1M
---
## Dataset Information
This dataset, sourced from [Kaggle](https://www.kaggle.com/datasets/quangbut/vietnamese-legal), provides a comprehensive collection of Vietnamese legal documents.
- **Source**: [Kaggle - Vietnamese Legal](https://www.kaggle.com/datasets/quangbut/vietnamese-legal)
- **Total Records**: 514,936
- **Language**: Vietnamese
## Loading the Dataset
You can easily load this dataset using the `datasets` library in Python:
```python
from datasets import load_dataset
law_dataset = load_dataset("clapAI/vietnamese-law-corpus")
print(law_dataset) |