FaheemBEG commited on
Commit
fb46707
·
verified ·
1 Parent(s): 0648422

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -39,8 +39,9 @@ The dataset is provided in **Parquet format** and includes the following columns
39
  | Column Name | Type | Description |
40
  |--------------------|------------------|-----------------------------------------------------------------------------|
41
  | `chunk_id` | `str` | Unique generated identifier for each text chunk. |
42
- | `cid` | `str` | Unique identifier of the decision (e.g., `CONSTEXT...`). |
43
- | `chunk_number` | `int` | Index of the chunk within the same decision. |
 
44
  | `nature` | `str` | Nature of the decision (e.g., Non lieu à statuer, Conformité, etc.). |
45
  | `solution` | `str` | Legal outcome or conclusion of the decision. |
46
  | `title` | `str` | Title summarizing the subject matter of the decision. |
@@ -59,11 +60,12 @@ The dataset is provided in **Parquet format** and includes the following columns
59
  The following fields were extracted and/or transformed from the original source:
60
 
61
  - **Basic fields**:
62
- - `cid`, `title`, `nature`, `solution`, `number`, and `decision_date` are extracted directly from the metadata of each decision record.
63
 
64
  - **Generated fields**:
65
  - `chunk_id`: a generated unique identifier combining the `cid` and `chunk_number`.
66
- - `chunk_number`: index of the chunk from the original decision.
 
67
 
68
  - **Textual fields**:
69
  - `text`: chunk of the main text content.
 
39
  | Column Name | Type | Description |
40
  |--------------------|------------------|-----------------------------------------------------------------------------|
41
  | `chunk_id` | `str` | Unique generated identifier for each text chunk. |
42
+ | `doc_id` | `str` | Document identifier from the source site. |
43
+ | `chunk_index` | `int` | Index of the chunk within the same document. |
44
+ | `chunk_xxh64` | `str` | XXH64 hash of the `chunk_text` value. |
45
  | `nature` | `str` | Nature of the decision (e.g., Non lieu à statuer, Conformité, etc.). |
46
  | `solution` | `str` | Legal outcome or conclusion of the decision. |
47
  | `title` | `str` | Title summarizing the subject matter of the decision. |
 
60
  The following fields were extracted and/or transformed from the original source:
61
 
62
  - **Basic fields**:
63
+ - `doc_id` (cid), `title`, `nature`, `solution`, `number`, and `decision_date` are extracted directly from the metadata of each decision record.
64
 
65
  - **Generated fields**:
66
  - `chunk_id`: a generated unique identifier combining the `cid` and `chunk_number`.
67
+ - `chunk_index`: is the index of the chunk of a same document. Each document has an unique `doc_id`.
68
+ - `chunk_xxh64`: is the xxh64 hash of the `chunk_text` value. It is useful to determine if the `chunk_text` value has changed from a version to another.
69
 
70
  - **Textual fields**:
71
  - `text`: chunk of the main text content.