Update README.md
Browse files
README.md
CHANGED
|
@@ -39,10 +39,19 @@ The original and full **LEGI** dataset includes:
|
|
| 39 |
- All **official codes in force**, and **repealed codes**.
|
| 40 |
- And more ...
|
| 41 |
|
| 42 |
-
In this version,
|
| 43 |
-
- **In force** (`VIGUEUR`)
|
| 44 |
- **Modified** (`MODIFIE`) : content that has been modified, so not in force anymore
|
| 45 |
- **Abrogated deferred** (`ABROGE_DIFF`) : content still valid until the end date indicated.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
|
| 47 |
Each article is chunked and vectorized using the [`BAAI/bge-m3`](https://huggingface.co/BAAI/bge-m3) embedding model, enabling use in **semantic search**, **retrieval-augmented generation (RAG)**, and **legal research** systems for example.
|
| 48 |
|
|
@@ -63,7 +72,7 @@ The dataset is provided in **Parquet format** and includes the following columns
|
|
| 63 |
| `nature` | `str` | Nature of the text (e.g., `Article`). |
|
| 64 |
| `category` | `str` | Type of legislative document (e.g., `LOI`, `DECRET`, `ARRETE`, etc.). |
|
| 65 |
| `ministry` | `str` | Ministry responsible for the publication, if applicable. |
|
| 66 |
-
| `status` | `str` | Status of the article: `VIGUEUR` (in force), `MODIFIE` (modified)
|
| 67 |
| `title` | `str` | Short title of the legislative document. |
|
| 68 |
| `full_title` | `str` | Full formal title of the text. |
|
| 69 |
| `subtitles` | `str` | Subtitle(s) indicating article grouping or section. |
|
|
|
|
| 39 |
- All **official codes in force**, and **repealed codes**.
|
| 40 |
- And more ...
|
| 41 |
|
| 42 |
+
In this version, **all** status are included :
|
| 43 |
+
- **In force** (`VIGUEUR`) : article that applies on the current date.
|
| 44 |
- **Modified** (`MODIFIE`) : content that has been modified, so not in force anymore
|
| 45 |
- **Abrogated deferred** (`ABROGE_DIFF`) : content still valid until the end date indicated.
|
| 46 |
+
- **Abrogated** (`ABROGE`) : article that is no longer in force as a result of explicit repeal by a text published in the Official Journal.
|
| 47 |
+
- **Canceled** (`ANNULE`) : article of the code cancelled by decision of the Council of State following an appeal.
|
| 48 |
+
- **Disjointed** (`DISJOINT`) : ‘separate’ article of the code; its provisions are no longer applied. This separation may not be permanent; its provisions may be reinstated by a new text. This legal status is specific to tax legislation.
|
| 49 |
+
- **Modified stillborn** (`MODIFIE_MORT_NE`) : article amended or repealed before the date set for its entry into force shall be deemed never to have had legal existence.
|
| 50 |
+
- **Outdated** (`PERIME`) : article subject to implicit repeal; this is the case, for example, with Article 39 octies of the General Tax Code.
|
| 51 |
+
- **Transfered** (`TRANSFERE`) : article whose provisions are reproduced under another article number. Example: Article L. 821-5-2 of the code de commerce has become Article L. 821-5-3 of the same code.
|
| 52 |
+
- **In force deferred** (`VIGUEUR_DIFF`) : article that comes into force at a later date. When this date is known, this deferred effective status is indicated.
|
| 53 |
+
|
| 54 |
+
To keep only certain statuses, you can check out the dedicated [tutorial section below](#2-how-to-load-mediatechs-datasets-from-hugging-face-and-use-them-in-a-rag-pipeline)
|
| 55 |
|
| 56 |
Each article is chunked and vectorized using the [`BAAI/bge-m3`](https://huggingface.co/BAAI/bge-m3) embedding model, enabling use in **semantic search**, **retrieval-augmented generation (RAG)**, and **legal research** systems for example.
|
| 57 |
|
|
|
|
| 72 |
| `nature` | `str` | Nature of the text (e.g., `Article`). |
|
| 73 |
| `category` | `str` | Type of legislative document (e.g., `LOI`, `DECRET`, `ARRETE`, etc.). |
|
| 74 |
| `ministry` | `str` | Ministry responsible for the publication, if applicable. |
|
| 75 |
+
| `status` | `str` | Status of the article: `VIGUEUR` (in force), `MODIFIE` (modified) etc ... |
|
| 76 |
| `title` | `str` | Short title of the legislative document. |
|
| 77 |
| `full_title` | `str` | Full formal title of the text. |
|
| 78 |
| `subtitles` | `str` | Subtitle(s) indicating article grouping or section. |
|