Skip to content

weaviate/weaviate-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Weaviate examples

List of examples and tutorials of how to use the Vector Search Engine Weaviate for cool machine-learning related tasks.

Running Weaviate

  • Most examples assume you have a Weaviate running. You can run one locally by following this installation guide in the documentation.
    • If you need a specific vectorizer module or another ML module, it will be explained in the tutorial.
  • Basic links: DocumentationGithub - Slack

Examples

Title Language Description
Semantic search through Wikipedia with the Weaviate vector search engine GraphQL Semantic search through a vectorized Wikipedia (SentenceBERT) with the Weaviate vector search engine
PyTorch-BigGraph Wikidata search with the Weaviate vector search engine GraphQL Search through Facebook Research's PyTorch BigGraph Wikidata-dataset with the Weaviate vector search engine
Multi-Modal Text/Image search using CLIP Bash, Javascript, React Use text to search through images using CLIP (multi2vec-clip). Also acts as a demo on how to use Weaviate with React
Google Colab notebook: Getting started with the Python Client python (Google Colab) Google Colab notebook to learn to get started with the Python client. Contains plenty of example code.
Demo dataset News Publications with Contextionary yaml Docker-compose configuration file of Weaviate with a News Publications demo dataset.
Demo dataset News Publications with Transformers, NER, Spellcheck and Q&A yaml Docker-compose configuration file of Weaviate with a News Publications demo dataset. The vectorization is done by a text2vec-transformers module, and the spellcheck, Q&A and Named Entity Recognition module are connected.
Weaviate simple schema Python Easy example of a schema and how to upload it to Weaviate with the Python client
Semantic search through wine dataset Python Easy example to get started with Weaviate and semantic search with the Transformers module
Unmask Superheroes in 5 steps using the Weaviate NLP module and the Python client Python Super simple 5 step guide to get started with the Weaviate NLP modules. This is a basic introduction to semantic search with Weaviate and the Python client.
Information Retrieval with BERT (Weaviate without vectorizer module) Python (Jupyter Notebook) In this example we are going to use Weaviate without vectorization module, and use it as pure vector database to use a BERT transformer to vectorize text documents, then retrieve the closest ones through Weaviate's Search
Text search with weaviate using own vectors Python A basic and simple example using our own vectors(obtained using SBERT, but any other model can also be used) in weaviate
Harry Potter Question Answering with Haystack & Weaviate Python (Jupyter/Colab notebook) A demo notebook showing how to use Weaviate as DocumentStore in Haystack.
Vegetable classification using image2vec-neural Python An image classification example made using image2vec-neural and flask to classify vegetable images
Exploring multi2vec-clip with Python and flask Python This example explores the multi2vec-clip module to implement an image and text combined search functionality.
Toxic Comment Classifier having GUI in Tkinter Python An example to classify comments as Toxic or Non Toxic
Plant information searching in NodeJs and Javascript NodeJs, Javascript A simple example to demonstrate how to use weaviate in NodeJs using Javascript APIs
Web App for movie recommendation NodeJs, Javascript An example demonstration how to easily make a movie recommender using weaviate
Generate Data profile for data stored in weaviate cluster Python, NodeJs, Javascript An example demonstration how to easily generate data profile for data in weaviate cluster using pandas library of python
Example with NER module of weaviate Python Minimal example to get started with and use NER module to extract useful data and store it
Workshop Vector Databases Python notebook Jupyter/Colab notebook to learn how to get started with Vector Search and Weaviate, given at Open Data Science Conference (ODSC) East 2022
Workshop Question Answering Python notebook Jupyter/Colab notebook to learn how to get started with Question Answering and Weaviate, given at Knowledge Graph Conference (KGC) 2022
Attendance system using image2vec-neural and own vectors Python This example uses image2vec-neural and has an option to use own vectors using OpenCV. It is a smart attendance system example
Monitoring Setup with Prometheus & Grafana yaml This example does not describe any use case, but rather shows a way of how to start, operate and configure Weaviate with Prometheus-Monitoring and a Grafana Instance with some sample dashboards.