mouadja commited on
Commit
cdc808c
·
verified ·
1 Parent(s): d41bcbb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -0
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-retrieval
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 10K<n<100K
9
+ ---
10
+
11
+ # CAG-Lab AWS Docs Vectors
12
+
13
+ 89,221 document chunk embeddings from AWS public documentation.
14
+
15
+ - **Embedding model**: OpenAI `text-embedding-3-small` (512 dimensions)
16
+ - **Distance metric**: Cosine
17
+ - **Source**: AWS public documentation chunks
18
+
19
+ ## Schema
20
+
21
+ | Column | Type | Description |
22
+ |--------|------|-------------|
23
+ | id | string | Deterministic UUID |
24
+ | embedding | list[float32] | 512-dim vector |
25
+ | content | string | Document chunk text |
26
+ | filePath | string | Original file path |
27
+ | chunkIndex | string | Chunk position |
28
+ | _pinecone_id | string | Original Pinecone vector ID |
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ from datasets import load_dataset
34
+
35
+ ds = load_dataset("mouadja/aws-docs")
36
+ ```
37
+
38
+ Or use with CAG-Lab:
39
+
40
+ ```bash
41
+ python scripts/setup_vectordb.py
42
+ ```