Instantaneous1 commited on
Commit
d3e79b4
1 Parent(s): d727f08
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -13,7 +13,7 @@ pinned: false
13
 
14
  ## Description
15
 
16
- ### A very fast reverse image search webapp in streamlit using NVIDIA's EfficientNet and Spotify's Annoy library over atleast 7000 images.
17
 
18
  Upload a picture, and AI powered by deep learning will instantly show you visually related matches. Explore and discover connections through the magic of image recognition.
19
 
@@ -29,7 +29,7 @@ Experience the app in action right in your browser: https://huggingface.co/space
29
  - Explore retrieved images to discover related content.
30
  - Adjust the number of matches displayed for visual comparisons.
31
  - Utilizes a pre-trained image feature extractor model (EfficientNet-b0) for accurate image similarity.
32
- - Employs Annoy index for fast approximate nearest neighbor search.
33
  - Offers a user-friendly interface powered by Streamlit.
34
 
35
  ## Getting Started
@@ -69,7 +69,7 @@ streamlit run app.py -- --dev
69
  Streamlit: Framework for building and deploying web apps in Python.
70
  Torch: Powerful deep learning framework.
71
  OpenDatasets: Library for convenient dataset downloading.
72
- Annoy: Library for fast approximate nearest neighbor search.
73
  NVIDIA EfficientNet-b0: Pre-trained image classification model for feature extraction.
74
 
75
  ## Usage
 
13
 
14
  ## Description
15
 
16
+ ### A very fast reverse image search webapp in streamlit using NVIDIA's EfficientNet and Facebook's Faiss library over approx 70000 images (224x224). (Trains turbo fast (4.30 miuntes) on 4GB GTX1650 GPU)
17
 
18
  Upload a picture, and AI powered by deep learning will instantly show you visually related matches. Explore and discover connections through the magic of image recognition.
19
 
 
29
  - Explore retrieved images to discover related content.
30
  - Adjust the number of matches displayed for visual comparisons.
31
  - Utilizes a pre-trained image feature extractor model (EfficientNet-b0) for accurate image similarity.
32
+ - Employs FAISS index for fast approximate nearest neighbor search.
33
  - Offers a user-friendly interface powered by Streamlit.
34
 
35
  ## Getting Started
 
69
  Streamlit: Framework for building and deploying web apps in Python.
70
  Torch: Powerful deep learning framework.
71
  OpenDatasets: Library for convenient dataset downloading.
72
+ FAISS: Facebook's fast AI vector similarity search
73
  NVIDIA EfficientNet-b0: Pre-trained image classification model for feature extraction.
74
 
75
  ## Usage