Spaces:
Running
Running
Add logo
Browse files- README.md +2 -2
- app.py +2 -1
- assets/logo.png +0 -0
README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
---
|
2 |
title: Medical image retrieval using a CLIP model
|
3 |
emoji: 🩺
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: streamlit
|
7 |
app_file: app.py
|
8 |
pinned: false
|
|
|
1 |
---
|
2 |
title: Medical image retrieval using a CLIP model
|
3 |
emoji: 🩺
|
4 |
+
colorFrom: red
|
5 |
+
colorTo: white
|
6 |
sdk: streamlit
|
7 |
app_file: app.py
|
8 |
pinned: false
|
app.py
CHANGED
@@ -22,7 +22,8 @@ def load_image_embeddings():
|
|
22 |
k = 5
|
23 |
img_dir = './images'
|
24 |
|
25 |
-
st.title("MedCLIP
|
|
|
26 |
st.markdown("""Search for medical images with natural language powered by a CLIP model [[Model Card]](https://huggingface.co/flax-community/medclip-roco) finetuned on the
|
27 |
[Radiology Objects in COntext (ROCO) dataset](https://github.com/razorx89/roco-dataset).""")
|
28 |
st.markdown("""Example queries:
|
|
|
22 |
k = 5
|
23 |
img_dir = './images'
|
24 |
|
25 |
+
st.title("MedCLIP 🩺")
|
26 |
+
st.image("./assets/logo.png", width=100)
|
27 |
st.markdown("""Search for medical images with natural language powered by a CLIP model [[Model Card]](https://huggingface.co/flax-community/medclip-roco) finetuned on the
|
28 |
[Radiology Objects in COntext (ROCO) dataset](https://github.com/razorx89/roco-dataset).""")
|
29 |
st.markdown("""Example queries:
|
assets/logo.png
ADDED