• Stars
    star
    143
  • Rank 256,698 (Top 6 %)
  • Language
    Jupyter Notebook
  • Created almost 4 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Build a semantic search engine with Transformers and Faiss

Building a semantic search engine with Transformers and Faiss

This repository contains the code for the following Medium blogs:

Check out the blogs if you want to learn how to create a semantic search engine with Sentence Transformers and Faiss.

You can run the notebook on Google Colab and leverage the free GPU to speed up the computation!

How to deploy the Streamlit app locally with Docker

Assuming docker is running on your machine and you have a docker account, do the following:

  • Build the image
docker build -t <USERNAME>/<YOUR_IMAGE_NAME> .
  • Run the image
docker run -p 8501:8501 <USERNAME>/<YOUR_IMAGE_NAME>
  • Open your browser and go to http://localhost:8501/