Spaces:
Running
on
T4
Running
on
T4
add deprec warning
Browse files- .gitignore +2 -1
- pages/Semantic_Search.py +1 -1
.gitignore
CHANGED
@@ -11,4 +11,5 @@ uploaded_images/
|
|
11 |
images/
|
12 |
gen_images/
|
13 |
app.zip
|
14 |
-
app_old/
|
|
|
|
11 |
images/
|
12 |
gen_images/
|
13 |
app.zip
|
14 |
+
app_old/
|
15 |
+
images_retail/
|
pages/Semantic_Search.py
CHANGED
@@ -791,7 +791,7 @@ def render_answer(answer,index):
|
|
791 |
with col_1:
|
792 |
inner_col_1,inner_col_2 = st.columns([8,92])
|
793 |
with inner_col_2:
|
794 |
-
st.image(ans['image_url'].replace("/home/ec2-user/SageMaker/","/home/user/"))
|
795 |
|
796 |
if('max_score_dict_list_sorted' in ans and 'Vector Search' in st.session_state.input_searchType):
|
797 |
desc___ = ans['desc'].split(" ")
|
|
|
791 |
with col_1:
|
792 |
inner_col_1,inner_col_2 = st.columns([8,92])
|
793 |
with inner_col_2:
|
794 |
+
st.image(ans['image_url'].replace("/home/ec2-user/SageMaker/","/home/user/app/"))
|
795 |
|
796 |
if('max_score_dict_list_sorted' in ans and 'Vector Search' in st.session_state.input_searchType):
|
797 |
desc___ = ans['desc'].split(" ")
|