PBusienei commited on
Commit
9af264b
·
1 Parent(s): 846c9b9

Used sentiment analysis instead for the model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def main():
53
  locations = list(df["Location Name"])
54
  # Query
55
  # Load the model
56
- model = pipeline('sentence-transformers/multi-qa-MiniLM-L6-cos-v1')
57
 
58
  query = st.text_input("Enter your query: ")
59
 
 
53
  locations = list(df["Location Name"])
54
  # Query
55
  # Load the model
56
+ model = pipeline('sentiment-analysis')#('sentence-transformers/multi-qa-MiniLM-L6-cos-v1')
57
 
58
  query = st.text_input("Enter your query: ")
59