Federico Galatolo commited on
Commit
19e7bd6
β€’
1 Parent(s): a09dcd0

Changed semantic to intelligent

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +2 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Serica Semantic Search
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 Semantic Search")
111
- st.write("Perform a semantic 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="")
 
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="")