Leask commited on
Commit
e4d31ea
·
1 Parent(s): 7c7905b

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.

Files changed (1) hide show
  1. README.md +20 -15
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
- - caption_long: A long caption for the image.
31
- - origin_hash: The MD5 hash of the original image file.
32
- - origin_width: The width of the original image in pixels.
33
- - origin_height: The height of the original image in pixels.
34
- - origin_storage_id: The storage ID of the original image file.
35
- - processed_storage_id: The storage ID of the processed image file.
36
- - processed_width: The width of the processed image in pixels.
37
- - processed_height: The height of the processed image in pixels.
38
- - aspect_ratio: The aspect ratio of the image.
39
- - exif: The EXIF data of the image.
40
- - meta: The metadata of the image.
41
- - source: The source organization of the image.
42
- - vector: The vector embedding of the image.
43
- - created_at: The creation time of the image.
44
- - updated_at: The update time of the image.
 
 
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