atrytone commited on
Commit
701a70b
·
1 Parent(s): e5264d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ from langchain.embeddings import HuggingFaceEmbeddings
8
 
9
  USER_ID = uuid.uuid4()
10
  with open("article_list.pkl","rb") as articles:
11
- article_list = pickle.load(tuple(articles))
12
  INDEXES = ["miread_large", "miread_contrastive", "scibert_contrastive"]
13
  MODELS = [
14
  "biodatlab/MIReAD-Neuro-Large",
 
8
 
9
  USER_ID = uuid.uuid4()
10
  with open("article_list.pkl","rb") as articles:
11
+ article_list = tuple(pickle.load(articles))
12
  INDEXES = ["miread_large", "miread_contrastive", "scibert_contrastive"]
13
  MODELS = [
14
  "biodatlab/MIReAD-Neuro-Large",