fix index

This commit is contained in:
davidmyriel
2024-11-18 15:26:15 -08:00
parent 93e1e05286
commit 6886ac71d1
15 changed files with 38 additions and 43 deletions
@@ -49,12 +49,12 @@ features:
- id: 5
image:
src: /img/advanced-search-use-cases/hybrid-search-service-fastembed.svg
alt: Create a Hybrid Search Service with Fastembed
title: Create a Hybrid Search Service with Fastembed
description: This tutorial guides you through building and deploying your own hybrid search service using Fastembed.
alt: Create a Hybrid Search Service with FastEmbed
title: Create a Hybrid Search Service with FastEmbed
description: This tutorial guides you through building and deploying your own hybrid search service using FastEmbed.
link:
text: View Tutorial
url: /documentation/tutorials/hybrid-search-fastembed/
url: /documentation/beginner-tutorials/hybrid-search-fastembed/
sitemapExclude: true
---
@@ -11,8 +11,8 @@ partition: qdrant
# Advanced Tutorials
| Tutorial | Description |
|----------------------------------------------------------|--------------------------------------------------------------------|
| [Collaborative Filtering](/documentation/advanced-tutorials/collaborative-filtering/) | Set up a recommendation engine purely with vector search. |
| [Multimodal Search](/documentation/advanced-tutorials/multimodal-search-fastembed/) | Create a simple multimodal search engine. |
| [Search Through Code](/documentation/advanced-tutorials/code-search/) | Implement semantic search application for code search tasks. |
| |
|----------------------------------------------------------|
| [Use Collaborative Filtering to Build a Movie Recommendation System with Qdrant](/documentation/advanced-tutorials/collaborative-filtering/) |
| [Build a Text/Image Multimodal Search System with Qdrant and FastEmbed](/documentation/advanced-tutorials/multimodal-search-fastembed/) |
| [Navigate Your Codebase with Semantic Search and Qdrant](/documentation/advanced-tutorials/code-search/) |
@@ -1,11 +1,11 @@
---
title: Semantic Search Over Code
title: Search Through Your Codebase
aliases:
- /documentation/tutorials/code-search/
weight: 2
---
# Use semantic search to navigate your codebase
# Navigate Your Codebase with Semantic Search and Qdrant
| Time: 45 min | Level: Intermediate | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/qdrant/examples/blob/master/code-search/code-search.ipynb) | |
|--------------|---------------------|--|----|
@@ -1,5 +1,5 @@
---
title: Collaborative Filtering
title: Build a Recommendation System with Collaborative Filtering
aliases:
- /documentation/tutorials/collaborative-filtering/
short_description: "Build an effective movie recommendation system using collaborative filtering and Qdrant's similarity search."
@@ -9,7 +9,7 @@ social_preview_image: /blog/collaborative-filtering/social_preview.png
weight: 3
---
# Create a collaborative filtering system
# Use Collaborative Filtering to Build a Movie Recommendation System with Qdrant
| Time: 45 min | Level: Intermediate | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/qdrant/examples/blob/master/collaborative-filtering/collaborative-filtering.ipynb) | |
|--------------|---------------------|--|----|
@@ -1,11 +1,11 @@
---
title: Multimodal Search
title: Setup Text/Image Multimodal Search
aliases:
- /documentation/tutorials/multimodal-search-fastembed/
weight: 1
---
# Multimodal Search with Qdrant and FastEmbed
# Build a Multimodal Search System with Qdrant and FastEmbed
| Time: 15 min | Level: Beginner |Output: [GitHub](https://github.com/qdrant/examples/blob/master/multimodal-search/Multimodal_Search_with_FastEmbed.ipynb)|[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://githubtocolab.com/qdrant/examples/blob/master/multimodal-search/Multimodal_Search_with_FastEmbed.ipynb) |
| --- | ----------- | ----------- | ----------- |
@@ -13,9 +13,9 @@ partition: qdrant
# Beginner Tutorials
| Tutorial | Description |
|----------------------------------------------------|---------------------------------------------------------|
| [Semantic Search for Beginners](/documentation/beginner-tutorials/search-beginners/) | Create a simple search engine locally in minutes. |
| [Simple Neural Search](/documentation/beginner-tutorials/neural-search/) | Build and deploy a neural search that browses startup data. |
| [Hybrid Search with FastEmbed](/documentation/beginner-tutorials/hybrid-search-fastembed/) | Build and deploy a hybrid search with our FastEmbed library. |
| [Measure Retrieval Quality](/documentation/beginner-tutorials/retrieval-quality/) | Measure and fine-tune the retrieval quality |
| |
|----------------------------------------------------|
| [Build Your First Semantic Search Engine in 5 Minutes](/documentation/beginner-tutorials/search-beginners/) |
| [Build a Neural Search Service with Sentence Transformers and Qdrant](/documentation/beginner-tutorials/neural-search/) |
| [Build a Hybrid Search Service with FastEmbed and Qdrant](/documentation/beginner-tutorials/hybrid-search-fastembed/) |
| [Measure and Improve Retrieval Quality in Semantic Search](/documentation/beginner-tutorials/retrieval-quality/) |
@@ -1,14 +1,11 @@
---
title: Hybrid Search with FastEmbed
title: Setup Hybrid Search with FastEmbed
aliases:
- /documentation/tutorials/hybrid-search-fastembed/
weight: 3
aliases:
- /documentation/tutorials/neural-search-fastembed/
---
# Create a Hybrid Search Service with Fastembed
# Build a Hybrid Search Service with FastEmbed and Qdrant
| Time: 20 min | Level: Beginner | Output: [GitHub](https://github.com/qdrant/qdrant_demo/) |
| --- | ----------- | ----------- |----------- |
@@ -1,17 +1,15 @@
---
title: Neural Search Service
title: Build a Neural Search Service
aliases:
- /documentation/tutorials/neural-search/
weight: 2
---
# Create a Simple Neural Search Service
# Build a Neural Search Service with Sentence Transformers and Qdrant
| Time: 30 min | Level: Beginner | Output: [GitHub](https://github.com/qdrant/qdrant_demo/tree/sentense-transformers) | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1kPktoudAP8Tu8n8l-iVMOQhVmHkWV_L9?usp=sharing) |
| --- | ----------- | ----------- |----------- |
This tutorial shows you how to build and deploy your own neural search service to look through descriptions of companies from [startups-list.com](https://www.startups-list.com/) and pick the most similar ones to your query. The website contains the company names, descriptions, locations, and a picture for each entry.
A neural search service uses artificial neural networks to improve the accuracy and relevance of search results. Besides offering simple keyword results, this system can retrieve results by meaning. It can understand and interpret complex search queries and provide more contextually relevant output, effectively enhancing the user's search experience.
@@ -5,7 +5,7 @@ aliases:
weight: 4
---
# Measure retrieval quality
# Measure and Improve Retrieval Quality in Semantic Search
| Time: 30 min | Level: Intermediate | | |
|--------------|---------------------|--|----|
@@ -6,7 +6,7 @@ aliases:
- /documentation/tutorials/search-beginners/
---
# Semantic Search for Beginners
# Build Your First Semantic Search Engine in 5 Minutes
| Time: 5 - 15 min | Level: Beginner | | |
| --- | ----------- | ----------- |----------- |
@@ -11,9 +11,9 @@ partition: qdrant
# Database Tutorials
| Tutorial | Description |
|--------------------------------------------|----------------------------------------------------------------|
| [Bulk Upload Vectors](/documentation/database-tutorials/bulk-upload/) | Upload a large scale dataset. |
| [Asynchronous API](/documentation/database-tutorials/async-api/) | Communicate with Qdrant server asynchronously with Python SDK. |
| [Create Dataset Snapshots](/documentation/database-tutorials/create-snapshot/) | Turn a dataset into a snapshot by exporting it from a collection. |
| [Load HuggingFace Dataset](/documentation/database-tutorials/huggingface-datasets/) | Load a Hugging Face dataset to Qdrant |
| |
|--------------------------------------------|
| [Bulk Upload Vectors to a Qdrant Collection](/documentation/database-tutorials/bulk-upload/) |
| [Backup and Restore Qdrant Collections Using Snapshots](/documentation/database-tutorials/create-snapshot/) |
| [Load and Search Hugging Face Datasets with Qdrant](/documentation/database-tutorials/huggingface-datasets/) |
| [Using Qdrant’s Async API for Efficient Python Applications](/documentation/database-tutorials/async-api/) |
@@ -1,11 +1,11 @@
---
title: Using the Async API
title: Build With Async API
aliases:
- /documentation/tutorials/async-api/
weight: 4
---
# Using Qdrant asynchronously
# Using Qdrant’s Async API for Efficient Python Applications
Asynchronous programming is being broadly adopted in the Python ecosystem. Tools such as FastAPI [have embraced this new
paradigm](https://fastapi.tiangolo.com/async/), but it is also becoming a standard for ML models served as SaaS. For example, the Cohere SDK
@@ -5,7 +5,7 @@ aliases:
weight: 1
---
# Bulk upload a large number of vectors
# Bulk Upload Vectors to a Qdrant Collection
Uploading a large-scale dataset fast might be a challenge, but Qdrant has a few tricks to help you with that.
@@ -5,7 +5,7 @@ aliases:
weight: 2
---
# Create and restore collections from snapshot
# Backup and Restore Qdrant Collections Using Snapshots
| Time: 20 min | Level: Beginner | | |
|--------------|-----------------|--|----|
@@ -5,7 +5,7 @@ aliases:
weight: 3
---
# Loading a dataset from Hugging Face hub
# Load and Search Hugging Face Datasets with Qdrant
[Hugging Face](https://huggingface.co/) provides a platform for sharing and using ML models and
datasets. [Qdrant](https://huggingface.co/Qdrant) also publishes datasets along with the