Spaces:
Running
Running
Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -1183,7 +1183,7 @@ const CONFIG = {
|
|
| 1183 |
// ==================== SAMPLE DATA ====================
|
| 1184 |
const SAMPLES = [
|
| 1185 |
{ content: "Retrieval-Augmented Generation (RAG) is an AI framework that combines retrieval of relevant documents with generative language models. It allows LLMs to access external knowledge bases to produce more accurate, up-to-date, and factually grounded responses. RAG reduces hallucination by grounding responses in retrieved context.", source: "rag_guide.md", category: "technical", metadata: { topic: "RAG", author: "AI Team" }},
|
| 1186 |
-
{ content: "Vector databases store data as high-dimensional vectors (embeddings) that capture semantic meaning. Popular vector DBs include LanceDB, ChromaDB, Qdrant, Milvus, and Pinecone. They enable efficient similarity search using algorithms like HNSW, IVF, or brute-force cosine similarity for nearest neighbor retrieval.", source: "vector_db_comparison.md", category: "documentation",
|
| 1187 |
{ content: "Cross-encoder reranking improves retrieval accuracy by scoring query-document pairs directly. Unlike bi-encoders that compute query and document embeddings independently, cross-encoders process both together through a transformer, capturing fine-grained interactions. The ms-marco-MiniLM-L-6-v2 model is a lightweight yet effective reranker.", source: "reranking_guide.md", category: "technical", metadata: { topic: "Reranking", author: "ML Team" }},
|
| 1188 |
{ content: "Neural networks are computing systems inspired by biological neural networks. They consist of interconnected nodes (neurons) organized in layers: input, hidden, and output. Deep learning uses networks with many hidden layers to learn hierarchical representations of data, enabling breakthroughs in image recognition, NLP, and game playing.", source: "neural_networks.md", category: "technical", meta { topic: "Deep Learning", author: "Research Team" }},
|
| 1189 |
{ content: "Modern web development involves frameworks like React, Vue, Angular, and Svelte for frontend, and Node.js, Python, Go, or Rust for backend. Static site generators (SSG) like Next.js, Astro, and Hugo enable fast, SEO-friendly websites. WebAssembly (WASM) allows running compiled languages in the browser for near-native performance.", source: "webdev_overview.md", category: "documentation", metadata: { topic: "WebDev", author: "Frontend Team" }},
|
|
|
|
| 1183 |
// ==================== SAMPLE DATA ====================
|
| 1184 |
const SAMPLES = [
|
| 1185 |
{ content: "Retrieval-Augmented Generation (RAG) is an AI framework that combines retrieval of relevant documents with generative language models. It allows LLMs to access external knowledge bases to produce more accurate, up-to-date, and factually grounded responses. RAG reduces hallucination by grounding responses in retrieved context.", source: "rag_guide.md", category: "technical", metadata: { topic: "RAG", author: "AI Team" }},
|
| 1186 |
+
{ content: "Vector databases store data as high-dimensional vectors (embeddings) that capture semantic meaning. Popular vector DBs include LanceDB, ChromaDB, Qdrant, Milvus, and Pinecone. They enable efficient similarity search using algorithms like HNSW, IVF, or brute-force cosine similarity for nearest neighbor retrieval.", source: "vector_db_comparison.md", category: "documentation", metadata: { topic: "VectorDB", author: "Data Team" }},
|
| 1187 |
{ content: "Cross-encoder reranking improves retrieval accuracy by scoring query-document pairs directly. Unlike bi-encoders that compute query and document embeddings independently, cross-encoders process both together through a transformer, capturing fine-grained interactions. The ms-marco-MiniLM-L-6-v2 model is a lightweight yet effective reranker.", source: "reranking_guide.md", category: "technical", metadata: { topic: "Reranking", author: "ML Team" }},
|
| 1188 |
{ content: "Neural networks are computing systems inspired by biological neural networks. They consist of interconnected nodes (neurons) organized in layers: input, hidden, and output. Deep learning uses networks with many hidden layers to learn hierarchical representations of data, enabling breakthroughs in image recognition, NLP, and game playing.", source: "neural_networks.md", category: "technical", meta { topic: "Deep Learning", author: "Research Team" }},
|
| 1189 |
{ content: "Modern web development involves frameworks like React, Vue, Angular, and Svelte for frontend, and Node.js, Python, Go, or Rust for backend. Static site generators (SSG) like Next.js, Astro, and Hugo enable fast, SEO-friendly websites. WebAssembly (WASM) allows running compiled languages in the browser for near-native performance.", source: "webdev_overview.md", category: "documentation", metadata: { topic: "WebDev", author: "Frontend Team" }},
|