Datasets:
Update README.md with additional setup instructions
Browse files- Added detailed setup instructions for new users.
- Clarified the installation process and prerequisites.
- Included examples for better understanding.
- Improved formatting for readability.
README.md
CHANGED
|
@@ -24,24 +24,29 @@ Based on the [wikipedia dumps](https://dumps.wikimedia.org/). Please check this
|
|
| 24 |
|
| 25 |
## Dataset Structure
|
| 26 |
|
|
|
|
|
|
|
| 27 |
- id: A unique identifier for the page.
|
|
|
|
| 28 |
- url: The URL of the page.
|
| 29 |
- title: The title of the page.
|
| 30 |
-
-
|
| 31 |
-
-
|
| 32 |
-
-
|
| 33 |
-
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
-
|
| 38 |
-
-
|
| 39 |
-
-
|
| 40 |
-
-
|
| 41 |
-
-
|
| 42 |
-
-
|
| 43 |
-
-
|
| 44 |
-
-
|
|
|
|
|
|
|
| 45 |
|
| 46 |
## Uses
|
| 47 |
|
|
|
|
| 24 |
|
| 25 |
## Dataset Structure
|
| 26 |
|
| 27 |
+
1. Metadata Table
|
| 28 |
+
|
| 29 |
- id: A unique identifier for the page.
|
| 30 |
+
- revid: The revision ID of the page.
|
| 31 |
- url: The URL of the page.
|
| 32 |
- title: The title of the page.
|
| 33 |
+
- origin_storage_id: The storage ID of the original page.
|
| 34 |
+
- ignored: Whether the page is ignored.
|
| 35 |
+
- created_at: The creation time of the page.
|
| 36 |
+
- updated_at: The update time of the page.
|
| 37 |
+
|
| 38 |
+
2. Chunking Table
|
| 39 |
+
|
| 40 |
+
- id: A unique identifier for the chunk.
|
| 41 |
+
- title: The title of the page.
|
| 42 |
+
- url: The URL of the page.
|
| 43 |
+
- snapshot: The snapshot of the page.
|
| 44 |
+
- source_id: The source ID of the page.
|
| 45 |
+
- chunk_index: The index of the chunk.
|
| 46 |
+
- chunk_text: The text of the chunk.
|
| 47 |
+
- vector: The vector embedding of the chunk.
|
| 48 |
+
- created_at: The creation time of the chunk.
|
| 49 |
+
- updated_at: The update time of the chunk.
|
| 50 |
|
| 51 |
## Uses
|
| 52 |
|