Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -82,7 +82,7 @@ The value includes the `title` and the textual content chunk `text`.
|
|
| 82 |
This strategy is designed to improve semantic search for document search use cases on administrative procedures.
|
| 83 |
|
| 84 |
The Langchain's `RecursiveCharacterTextSplitter` function was used to make these chunks (`text` value). The parameters used are :
|
| 85 |
-
- `chunk_size` = 1500
|
| 86 |
- `chunk_overlap` = 200
|
| 87 |
- `length_function` = len
|
| 88 |
|
|
@@ -92,7 +92,7 @@ Each `chunk_text` was embedded using the [**`BAAI/bge-m3`**](https://huggingface
|
|
| 92 |
|
| 93 |
## 🔄 The chunking doesn't fit your use case?
|
| 94 |
|
| 95 |
-
|
| 96 |
|
| 97 |
⚠️ The tutorial is only relevant for datasets that were chunked **without overlap**.
|
| 98 |
|
|
|
|
| 82 |
This strategy is designed to improve semantic search for document search use cases on administrative procedures.
|
| 83 |
|
| 84 |
The Langchain's `RecursiveCharacterTextSplitter` function was used to make these chunks (`text` value). The parameters used are :
|
| 85 |
+
- `chunk_size` = 1500
|
| 86 |
- `chunk_overlap` = 200
|
| 87 |
- `length_function` = len
|
| 88 |
|
|
|
|
| 92 |
|
| 93 |
## 🔄 The chunking doesn't fit your use case?
|
| 94 |
|
| 95 |
+
If you need to reconstitute the original, un-chunked dataset, you can follow [this tutorial notebook available on our GitHub repository](https://github.com/etalab-ia/mediatech/blob/main/docs/reconstruct_vector_database.ipynb).
|
| 96 |
|
| 97 |
⚠️ The tutorial is only relevant for datasets that were chunked **without overlap**.
|
| 98 |
|