abhicake commited on
Commit
56850f7
1 Parent(s): 8be48f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import gradio as gr
8
  model = SentenceTransformer('sentence-transformers/all-mpnet-base-v2')
9
 
10
  # Load the embeddings from the JSON file
11
- with open('/content/drive/My Drive/final_data_with_embeddings.json', 'r') as f:
12
  data = json.load(f)
13
 
14
  # Function to perform the search
 
8
  model = SentenceTransformer('sentence-transformers/all-mpnet-base-v2')
9
 
10
  # Load the embeddings from the JSON file
11
+ with open('./final_data_with_embeddings.json', 'r') as f:
12
  data = json.load(f)
13
 
14
  # Function to perform the search