Spaces:
Running
on
T4
Running
on
T4
mvectors
Browse files
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()
|