prasadnu commited on
Commit
dcc8733
·
1 Parent(s): 98d18bd
Files changed (1) hide show
  1. semantic_search/llm_eval.py +2 -1
semantic_search/llm_eval.py CHANGED
@@ -92,7 +92,8 @@ def eval(question, answers):
92
  current_scores.append(i['score'])
93
 
94
 
95
-
 
96
  x = np.array(llm_scores)
97
  x = x.reshape(-1, 1)
98
  x_norm = (pre.MinMaxScaler().fit_transform(x)).flatten().tolist()
 
92
  current_scores.append(i['score'])
93
 
94
 
95
+ print("LLM Scores: ", llm_scores)
96
+ print("Current Scores: ", current_scores)
97
  x = np.array(llm_scores)
98
  x = x.reshape(-1, 1)
99
  x_norm = (pre.MinMaxScaler().fit_transform(x)).flatten().tolist()