abhicake commited on
Commit
7f0e344
·
verified ·
1 Parent(s): 25ca267

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/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('data_with_embeddings.json', 'r') as f:
12
  data = json.load(f)
13
 
14
  # Function to perform the search