docs: carte dataset 237Legal
Browse files
README.md
CHANGED
|
@@ -1,41 +1,73 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
- name: nature
|
| 21 |
-
dtype: string
|
| 22 |
-
- name: titre
|
| 23 |
-
dtype: string
|
| 24 |
-
- name: chapitre
|
| 25 |
-
dtype: string
|
| 26 |
-
- name: section
|
| 27 |
-
dtype: string
|
| 28 |
-
- name: ordre
|
| 29 |
-
dtype: int64
|
| 30 |
-
splits:
|
| 31 |
-
- name: train
|
| 32 |
-
num_bytes: 627893
|
| 33 |
-
num_examples: 418
|
| 34 |
-
download_size: 244551
|
| 35 |
-
dataset_size: 627893
|
| 36 |
-
configs:
|
| 37 |
-
- config_name: default
|
| 38 |
-
data_files:
|
| 39 |
-
- split: train
|
| 40 |
-
path: data/train-*
|
| 41 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
language:
|
| 4 |
+
- fr
|
| 5 |
+
tags:
|
| 6 |
+
- legal
|
| 7 |
+
- droit
|
| 8 |
+
- droit-camerounais
|
| 9 |
+
- code-penal
|
| 10 |
+
- cameroun
|
| 11 |
+
- legalkit
|
| 12 |
+
- 237Legal
|
| 13 |
+
task_categories:
|
| 14 |
+
- question-answering
|
| 15 |
+
- text-generation
|
| 16 |
+
- summarization
|
| 17 |
+
pretty_name: 237Legal — Code Pénal camerounais
|
| 18 |
+
size_categories:
|
| 19 |
+
- n<1K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
---
|
| 21 |
+
|
| 22 |
+
# 🇨🇲 237Legal — Code Pénal camerounais
|
| 23 |
+
|
| 24 |
+
Dataset structuré du **Code Pénal camerounais** (Loi n° 2016/007 du 12 juillet 2016),
|
| 25 |
+
formaté selon le standard [LegalKit](https://huggingface.co/datasets/louisbrulenaudet/legalkit)
|
| 26 |
+
pour l'entraînement de modèles de langage juridiques.
|
| 27 |
+
|
| 28 |
+
## 📋 Schéma
|
| 29 |
+
|
| 30 |
+
| Colonne | Description |
|
| 31 |
+
|---|---|
|
| 32 |
+
| `ref` | Référence complète (ex : `Code Pénal camerounais, art. 1`) |
|
| 33 |
+
| `title_main` | `Code Pénal camerounais` |
|
| 34 |
+
| `num` | Numéro de l'article |
|
| 35 |
+
| `texte` | Texte complet de l'article |
|
| 36 |
+
| `texteHtml` | Texte en HTML |
|
| 37 |
+
| `dateDebut` | Date d'entrée en vigueur |
|
| 38 |
+
| `dateFin` | Date de fin (`2999-01-01` = indéfini) |
|
| 39 |
+
| `etat` | État (`VIGUEUR`) |
|
| 40 |
+
| `nature` | `ARTICLE` |
|
| 41 |
+
| `titre` | Titre parent |
|
| 42 |
+
| `chapitre` | Chapitre parent |
|
| 43 |
+
| `section` | Section parente |
|
| 44 |
+
| `ordre` | Position ordinale |
|
| 45 |
+
|
| 46 |
+
## 🚀 Utilisation
|
| 47 |
+
|
| 48 |
+
```python
|
| 49 |
+
from datasets import load_dataset
|
| 50 |
+
|
| 51 |
+
ds = load_dataset("IvanDVonga/237Legal")
|
| 52 |
+
print(ds["train"][0])
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## 📊 Statistiques
|
| 56 |
+
|
| 57 |
+
| Indicateur | Valeur |
|
| 58 |
+
|---|---|
|
| 59 |
+
| Articles | 418 |
|
| 60 |
+
| Titres | 8 |
|
| 61 |
+
| Chapitres | 29 |
|
| 62 |
+
| Sections | 39 |
|
| 63 |
+
| Langue | Français |
|
| 64 |
+
| Texte source | Loi n° 2016/007 du 12 juillet 2016 |
|
| 65 |
+
|
| 66 |
+
## 🙏 Inspiration
|
| 67 |
+
|
| 68 |
+
Formaté selon le standard [LegalKit](https://huggingface.co/datasets/louisbrulenaudet/legalkit)
|
| 69 |
+
de [Louis Brulé Naudet](https://github.com/louisbrulenaudet).
|
| 70 |
+
|
| 71 |
+
## 📄 Licence
|
| 72 |
+
|
| 73 |
+
CC BY 4.0 — Le texte de la loi est un document officiel de la République du Cameroun.
|