Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,15 @@ p.add_layout(color_bar, 'right') # Position the color bar to the right
|
|
41 |
|
42 |
st.set_page_config(layout='wide')
|
43 |
|
44 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
# Display the Bokeh figure in Streamlit
|
47 |
st.bokeh_chart(p,use_container_width=True)
|
|
|
41 |
|
42 |
st.set_page_config(layout='wide')
|
43 |
|
44 |
+
st.markdown("""
|
45 |
+
# Image Similarity Data Visualization
|
46 |
+
|
47 |
+
by [Tony Assi](https://www.tonyassi.com/)
|
48 |
+
|
49 |
+
Images position are based on similarity, images close to each other look similar. The colors represent the best seller index. 0 is best seller. The dataset is [tonyassi/revolve1-embeddings-xy](https://huggingface.co/datasets/tonyassi/revolve1-embeddings-xy).
|
50 |
+
""")
|
51 |
+
|
52 |
+
#st.html('<br><br><br><br>')
|
53 |
|
54 |
# Display the Bokeh figure in Streamlit
|
55 |
st.bokeh_chart(p,use_container_width=True)
|