Spaces:
Sleeping
Sleeping
Commit
·
ea07566
1
Parent(s):
4bb2ed7
Update app.py
Browse files
app.py
CHANGED
@@ -123,9 +123,10 @@ with detailsTab:
|
|
123 |
st.header("App details")
|
124 |
|
125 |
st.markdown(
|
126 |
-
"""
|
127 |
- The app supports Semantic search which seeks to improve search accuracy by understanding the content of the search query in contrast to traditional search engines which only find documents based on lexical matches.
|
128 |
- The corpus consists of movie plots from Hindi, Telugu, Tamil, Kannada, Bengali, Malayalam, Odiya, Marathi, Punjabi & Gujarathi languages.
|
|
|
129 |
- The core idea of the retrieval:
|
130 |
- Use Bi-Encoder (Retrieval) and Cross-encoder (Re-ranker) to retrieve the search results.
|
131 |
- The Bi-encoder is responsible for independently embedding the sentences and search queries into a vector space. The result is then passed to the cross-encoder for checking the relevance/similarity between the query and sentences.
|
|
|
123 |
st.header("App details")
|
124 |
|
125 |
st.markdown(
|
126 |
+
f"""
|
127 |
- The app supports Semantic search which seeks to improve search accuracy by understanding the content of the search query in contrast to traditional search engines which only find documents based on lexical matches.
|
128 |
- The corpus consists of movie plots from Hindi, Telugu, Tamil, Kannada, Bengali, Malayalam, Odiya, Marathi, Punjabi & Gujarathi languages.
|
129 |
+
- Corpus size:{len(df)}
|
130 |
- The core idea of the retrieval:
|
131 |
- Use Bi-Encoder (Retrieval) and Cross-encoder (Re-ranker) to retrieve the search results.
|
132 |
- The Bi-encoder is responsible for independently embedding the sentences and search queries into a vector space. The result is then passed to the cross-encoder for checking the relevance/similarity between the query and sentences.
|