Spaces:
Running
on
T4
Running
on
T4
rerank model
Browse files
app.py
CHANGED
@@ -92,7 +92,7 @@ st.markdown("""
|
|
92 |
}
|
93 |
|
94 |
.card-text {
|
95 |
-
font-size:
|
96 |
font-weight: 500;
|
97 |
flex-grow: 1;
|
98 |
display: flex;
|
@@ -105,7 +105,7 @@ st.markdown("""
|
|
105 |
.card:hover .card-text{
|
106 |
opacity: 1;
|
107 |
color: #e46e08;
|
108 |
-
font-size:
|
109 |
font-weight: bold;
|
110 |
transform: scale(1.2); /* Optional: adds smooth grow effect */
|
111 |
transition: all 0.3s ease-in-out;
|
@@ -164,7 +164,7 @@ with col1:
|
|
164 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
165 |
<div class="card">
|
166 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π</div>
|
167 |
-
<div class="card-text" style="font-size:
|
168 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
169 |
Explore ML search types, Re-ranking, Query rewriting and more on a retail dataset </div>
|
170 |
</div>
|
@@ -177,7 +177,7 @@ with col2:
|
|
177 |
<a href="/Multimodal_Conversational_Search" target="_self" style="text-decoration: none;">
|
178 |
<div class="card">
|
179 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π¬</div>
|
180 |
-
<div class="card-text" style="font-size:
|
181 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
182 |
Explore Multimodal Conversational Search over complex PDFs (with tables, graphs etc) </div>
|
183 |
</div>
|
@@ -194,7 +194,7 @@ with col3:
|
|
194 |
<a href="/AI_Shopping_Assistant" target="_self" style="text-decoration: none;">
|
195 |
<div class="card">
|
196 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π§ π¬</div>
|
197 |
-
<div class="card-text" style="font-size:
|
198 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
199 |
Explore how an AI agent in front of RAG enhances product search experience </div>
|
200 |
</div>
|
|
|
92 |
}
|
93 |
|
94 |
.card-text {
|
95 |
+
font-size: 31px;
|
96 |
font-weight: 500;
|
97 |
flex-grow: 1;
|
98 |
display: flex;
|
|
|
105 |
.card:hover .card-text{
|
106 |
opacity: 1;
|
107 |
color: #e46e08;
|
108 |
+
font-size: 33px;
|
109 |
font-weight: bold;
|
110 |
transform: scale(1.2); /* Optional: adds smooth grow effect */
|
111 |
transition: all 0.3s ease-in-out;
|
|
|
164 |
<a href="/Semantic_Search" target="_self" style="text-decoration: none;">
|
165 |
<div class="card">
|
166 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π</div>
|
167 |
+
<div class="card-text" style="font-size: 31px; color: #e46e08; ">AI Search</div>
|
168 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
169 |
Explore ML search types, Re-ranking, Query rewriting and more on a retail dataset </div>
|
170 |
</div>
|
|
|
177 |
<a href="/Multimodal_Conversational_Search" target="_self" style="text-decoration: none;">
|
178 |
<div class="card">
|
179 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π¬</div>
|
180 |
+
<div class="card-text" style="font-size: 31px; color: #e46e08; ">Multimodal RAG</div>
|
181 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
182 |
Explore Multimodal Conversational Search over complex PDFs (with tables, graphs etc) </div>
|
183 |
</div>
|
|
|
194 |
<a href="/AI_Shopping_Assistant" target="_self" style="text-decoration: none;">
|
195 |
<div class="card">
|
196 |
<div class="card-header" style="font-size: 45px; margin-bottom: 10px;">π§ π¬</div>
|
197 |
+
<div class="card-text" style="font-size: 31px; color: #e46e08;">Agentic RAG</div>
|
198 |
<div class="card-description" style="font-size: 16px; color: #ccc; margin-top: 6px;text-align: center;white-space: normal;">
|
199 |
Explore how an AI agent in front of RAG enhances product search experience </div>
|
200 |
</div>
|