Spaces:
Sleeping
Sleeping
Federico Galatolo
commited on
Commit
Β·
19e7bd6
1
Parent(s):
a09dcd0
Changed semantic to intelligent
Browse files
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title: Serica
|
| 3 |
emoji: π
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: pink
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Serica Intelligent Search
|
| 3 |
emoji: π
|
| 4 |
colorFrom: indigo
|
| 5 |
colorTo: pink
|
app.py
CHANGED
|
@@ -107,8 +107,8 @@ def search():
|
|
| 107 |
|
| 108 |
es = Elasticsearch(os.environ["ELASTIC_HOST"], basic_auth=os.environ["ELASTIC_AUTH"].split(":"))
|
| 109 |
|
| 110 |
-
st.header("Serica
|
| 111 |
-
st.write("Perform a
|
| 112 |
model_name = st.selectbox("Model", ["LaBSE"])
|
| 113 |
limit = st.number_input("Number of results", 10)
|
| 114 |
query = st.text_input("Query", value="")
|
|
|
|
| 107 |
|
| 108 |
es = Elasticsearch(os.environ["ELASTIC_HOST"], basic_auth=os.environ["ELASTIC_AUTH"].split(":"))
|
| 109 |
|
| 110 |
+
st.header("Serica Intelligent Search")
|
| 111 |
+
st.write("Perform a intelligent search using a Sentence Embedding Transformer model on the SERICA database")
|
| 112 |
model_name = st.selectbox("Model", ["LaBSE"])
|
| 113 |
limit = st.number_input("Number of results", 10)
|
| 114 |
query = st.text_input("Query", value="")
|