HamidBekam commited on
Commit
8e0f9ea
1 Parent(s): 330e10a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -36,12 +36,12 @@ st.title("Product Similarity Finder")
36
 
37
  # Embedding selection slider
38
  embedding_option = st.select_slider(
39
- 'Select Embedding Set',
40
- options=['Embedding Set 1', 'Embedding Set 2']
41
  )
42
 
43
  # Determine which embeddings to use based on the slider selection
44
- if embedding_option == 'Embedding Set 1':
45
  stored_products = stored_products_1
46
  stored_embeddings = stored_embeddings_1
47
  else:
 
36
 
37
  # Embedding selection slider
38
  embedding_option = st.select_slider(
39
+ 'Select Search Approach',
40
+ options=['All Products', 'Master Products']
41
  )
42
 
43
  # Determine which embeddings to use based on the slider selection
44
+ if embedding_option == 'All Products':
45
  stored_products = stored_products_1
46
  stored_embeddings = stored_embeddings_1
47
  else: