dejanseo commited on
Commit
8e633b2
·
verified ·
1 Parent(s): 30989d2

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -3
src/streamlit_app.py CHANGED
@@ -4,7 +4,7 @@ from sentence_transformers.quantization import quantize_embeddings
4
  import numpy as np
5
 
6
  st.set_page_config(page_title="MXBAI Embed Demo", layout="centered")
7
- st.title("MXBAI Embed Large V1 Explorer")
8
 
9
  st.markdown(
10
  """
@@ -18,8 +18,8 @@ Use the checkboxes on the left sidebar to toggle:
18
 
19
  # Sidebar controls
20
  st.sidebar.header("Options")
21
- use_mrl = st.sidebar.checkbox("Enable MRL (truncate to 256 dims)", value=False)
22
- use_binary = st.sidebar.checkbox("Enable Binary Quantization", value=False)
23
 
24
  # Cache the model loading so Streamlit doesn't reload on every interaction unnecessarily.
25
  @st.cache_resource(show_spinner=False)
 
4
  import numpy as np
5
 
6
  st.set_page_config(page_title="MXBAI Embed Demo", layout="centered")
7
+ st.title("MRL + Binary Embedding Demo by DEJAN")
8
 
9
  st.markdown(
10
  """
 
18
 
19
  # Sidebar controls
20
  st.sidebar.header("Options")
21
+ use_mrl = st.sidebar.checkbox("Enable MRL", value=False)
22
+ use_binary = st.sidebar.checkbox("Enable Binary", value=False)
23
 
24
  # Cache the model loading so Streamlit doesn't reload on every interaction unnecessarily.
25
  @st.cache_resource(show_spinner=False)