Spaces:
Configuration error
Configuration error
Update cross_encoder_reranking_train.py
Browse files
cross_encoder_reranking_train.py
CHANGED
@@ -32,7 +32,7 @@ def rank_by_centrality(texts):
|
|
32 |
ranked = sorted(zip(texts, centrality_scores), key=lambda x: x[1], reverse=True)
|
33 |
return [text for text, _ in ranked]
|
34 |
|
35 |
-
def cluster_and_rank(texts, threshold=0.
|
36 |
if len(texts) < 2:
|
37 |
return texts
|
38 |
|
|
|
32 |
ranked = sorted(zip(texts, centrality_scores), key=lambda x: x[1], reverse=True)
|
33 |
return [text for text, _ in ranked]
|
34 |
|
35 |
+
def cluster_and_rank(texts, threshold=0.6):
|
36 |
if len(texts) < 2:
|
37 |
return texts
|
38 |
|