semihk1 commited on
Commit
c72ef91
·
verified ·
1 Parent(s): 30fb6dd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -2
README.md CHANGED
@@ -17,11 +17,39 @@ tags:
17
  - faiss
18
  - offline-embedding
19
  - pdf
20
- - chunling
21
  - openai
22
  - langchain
23
  - cybersecurity
24
  pretty_name: AWS All-in-One Docs Dataset
25
  size_categories:
26
  - 10K<n<100K
27
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  - faiss
18
  - offline-embedding
19
  - pdf
20
+ - chunking
21
  - openai
22
  - langchain
23
  - cybersecurity
24
  pretty_name: AWS All-in-One Docs Dataset
25
  size_categories:
26
  - 10K<n<100K
27
+ ---
28
+
29
+ # 📚 AWS PDF Chunk Dataset
30
+
31
+ This dataset consists of chunked text extracted from **all publicly available PDF documents on the Amazon Web Services (AWS) official website**. The data includes whitepapers, user guides, technical documentation, and best practice manuals—covering **virtually every AWS service, concept, and architecture** in depth.
32
+
33
+ It is designed to serve as a high-quality knowledge base for use in **embedding generation, vector databases, and retrieval-augmented generation (RAG)** systems.
34
+
35
+ ---
36
+
37
+ ## 📦 Dataset Structure
38
+
39
+ The dataset is provided as a `.json` file. Each entry corresponds to a text chunk extracted from a PDF document using a sliding window with **800-token chunks and 100-token overlap**. This preserves semantic continuity and improves embedding-based retrieval performance.
40
+
41
+ ```json
42
+ [
43
+ {
44
+ "id": "EC2Guide-001",
45
+ "source": "EC2Guide.pdf",
46
+ "chunk_id": 1,
47
+ "text": "Amazon EC2 allows scalable computing capacity in the AWS cloud..."
48
+ },
49
+ ...
50
+ ]
51
+
52
+ ⚠️ Disclaimer
53
+ This dataset is not affiliated with or endorsed by Amazon Web Services. All content is extracted from publicly available PDF files hosted on aws.amazon.com and is provided strictly for educational and research purposes under fair use.
54
+
55
+ Commercial usage is not allowed.