File size: 547 Bytes
4e2b533
8ab7d9a
 
 
4e2b533
 
3fc3986
4e2b533
 
 
 
 
3fc3986
4e2b533
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
from utils.frontend import build_sidebar

build_sidebar()

st.markdown("""
# Better Image Retrieval With Retrieval-Augmented CLIP 🧠


CLIP is a neural network trained on image-text pairs that can predict how semantically close images are with some text
But, although CLIP understands what it sees, it doesn't know its properties. While other models can understand text that contains such information, like Wikipedia.

In this demo application, we see if we can 'help' CLIP with another model.""")

st.image("diagram.png")