furkanunluturk commited on
Commit
f579df0
·
verified ·
1 Parent(s): 843e7e7

change model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ combined_definitions = [
11
  for item in dataset
12
  ]
13
 
14
- model = SentenceTransformer("atasoglu/mbert-base-cased-nli-stsb-tr")
15
  definition_embeddings = model.encode(combined_definitions, convert_to_tensor=True)
16
  proverb_embeddings = model.encode(proverbs, convert_to_tensor=True)
17
 
 
11
  for item in dataset
12
  ]
13
 
14
+ model = SentenceTransformer("emrecan/bert-base-turkish-cased-mean-nli-stsb-tr")
15
  definition_embeddings = model.encode(combined_definitions, convert_to_tensor=True)
16
  proverb_embeddings = model.encode(proverbs, convert_to_tensor=True)
17