All Projects → semi-technologies → weaviate-examples

semi-technologies / weaviate-examples

Licence: MIT license
Weaviate vector search engine – examples

Programming Languages

HTML
75241 projects
Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
EJS
674 projects
shell
77523 projects

Projects that are alternatives of or similar to weaviate-examples

awesome-weaviate
Awesome Weaviate
Stars: ✭ 33 (-58.23%)
Mutual labels:  weaviate, vector-search, vector-database, vector-search-engine
Milvus
An open-source vector database for embedding similarity search and AI applications.
Stars: ✭ 9,015 (+11311.39%)
Mutual labels:  vector-search, vector-database
awesome-vector-search
Collections of vector search related libraries, service and research papers
Stars: ✭ 460 (+482.28%)
Mutual labels:  vector-search, vector-search-engine
ros2 examples
Examples for individual ROS2 functionalities inc. Subscribers, Publishers, Timers, Services, Parameters. ...
Stars: ✭ 46 (-41.77%)
Mutual labels:  examples
evolution
Evolution process of The Falco Project
Stars: ✭ 37 (-53.16%)
Mutual labels:  examples
jsfiddle-github
JSFiddle implementation for interactive JavaScript examples.
Stars: ✭ 16 (-79.75%)
Mutual labels:  examples
gradle-demos
A collection of sample builds demonstrating how to do different things in Gradle
Stars: ✭ 29 (-63.29%)
Mutual labels:  examples
MoTIS
Mobile(iOS) Text-to-Image search powered by multimodal semantic representation models(e.g., OpenAI's CLIP). Accepted at NAACL 2022.
Stars: ✭ 60 (-24.05%)
Mutual labels:  vector-search
Sandbox
KumbiaPHP sandbox with examples
Stars: ✭ 16 (-79.75%)
Mutual labels:  examples
Examples Qt
Shows how to use Qt widgets only by programming code (c++17).
Stars: ✭ 38 (-51.9%)
Mutual labels:  examples
example
【例子】微信开发SDK(Wechat SDK For Golang)
Stars: ✭ 27 (-65.82%)
Mutual labels:  examples
neeo-sdk-examples
NEEO Brain SDK Examples
Stars: ✭ 19 (-75.95%)
Mutual labels:  examples
jsstore-examples
This repo contains examples of jsstore for different frameworks & tools
Stars: ✭ 31 (-60.76%)
Mutual labels:  examples
go-learning
My Golang training material for testing smaller Go concepts and ideas.
Stars: ✭ 27 (-65.82%)
Mutual labels:  examples
90 Python Examples
The best way to learn Python is by practicing examples. The repository contains examples of basic concepts of Python. You are advised to take the references from these examples and try them on your own.
Stars: ✭ 190 (+140.51%)
Mutual labels:  examples
three-stdlib
📚 Stand-alone library of threejs examples designed to run without transpilation in node & browser
Stars: ✭ 380 (+381.01%)
Mutual labels:  examples
optuna-examples
Examples for https://github.com/optuna/optuna
Stars: ✭ 238 (+201.27%)
Mutual labels:  examples
denobyexample
Deno by example - short examples showcasing how to use Deno
Stars: ✭ 72 (-8.86%)
Mutual labels:  examples
nuxtjs-examples
Example apps of Nuxt.js framework
Stars: ✭ 51 (-35.44%)
Mutual labels:  examples
kubernetes-examples
A bunch of examples of how to deploy things on kubernetes
Stars: ✭ 34 (-56.96%)
Mutual labels:  examples

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].