stindardlogic commited on
Commit
052ab08
·
verified ·
1 Parent(s): 5ca711d

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ size_categories:
6
+ - 100K<n<1M
7
+ task_categories:
8
+ - text-generation
9
+ - question-answering
10
+ tags:
11
+ - rag
12
+ - retrieval-augmented-generation
13
+ - vector-databases
14
+ - embeddings
15
+ - langchain
16
+ - llamaindex
17
+ - sft
18
+ - synthetic
19
+ - chunking
20
+ - hybrid-search
21
+ pretty_name: RAG Systems SFT 100K
22
+ ---
23
+
24
+ # RAG Systems SFT 100K
25
+
26
+ A synthetic supervised fine-tuning dataset of 100,000 high-quality conversations covering Retrieval-Augmented Generation (RAG) systems — from basic pipelines to advanced multi-hop retrieval, evaluation, and production optimization. Designed to train AI assistants that can help engineers build, debug, and scale RAG applications.
27
+
28
+ ## Dataset Description
29
+
30
+ This dataset covers the full spectrum of RAG system development across 12 specialized categories. Each record follows the ShareGPT format with a practitioner-level question and a detailed, implementation-ready response with working Python code.
31
+
32
+ ## Categories
33
+
34
+ | Category | Description |
35
+ |---|---|
36
+ | `rag_architecture` | Basic pipeline, advanced patterns (HyDE, RAG-Fusion, FLARE, GraphRAG) |
37
+ | `chunking_strategies` | Fixed-size, semantic, recursive, parent-child chunking |
38
+ | `vector_databases` | Pinecone vs Weaviate vs ChromaDB vs pgvector |
39
+ | `embedding_models` | text-embedding-3-small, BGE, sentence-transformers comparison |
40
+ | `retrieval_evaluation` | RAGAS metrics, debugging RAG failures |
41
+ | `hybrid_search` | BM25 + dense embeddings, RRF reranking |
42
+ | `reranking` | Cross-encoder reranking with Cohere, FlashRank |
43
+ | `contextual_compression` | LLMChainExtractor, EmbeddingsFilter, context window optimization |
44
+ | `citation_generation` | Generating cited responses linked to source documents |
45
+ | `multi_hop_rag` | Multi-step chained retrieval for complex questions |
46
+ | `rag_production` | Caching, latency optimization, cost control |
47
+ | `document_ingestion` | PDF, HTML, code, table parsing and loading |
48
+
49
+ ## Format
50
+
51
+ ShareGPT format:
52
+ ```json
53
+ {
54
+ "conversations": [
55
+ {"from": "human", "value": "...RAG question..."},
56
+ {"from": "gpt", "value": "...implementation-ready response with code..."}
57
+ ],
58
+ "metadata": {"category": "...", "context": "..."},
59
+ "id": "uuid"
60
+ }
61
+ ```
62
+
63
+ ## Use Cases
64
+
65
+ - Fine-tuning AI assistants for RAG system design and debugging
66
+ - Training models to reason about retrieval quality and evaluation
67
+ - Building AI-assisted RAG development tooling
68
+ - Educating teams on production RAG patterns
69
+
70
+ ## Quality Notes
71
+
72
+ All responses include working Python code examples using LangChain, LlamaIndex, and direct API integrations. Covers RAGAS evaluation, hybrid search implementation, and production deployment patterns.