Spaces:
Runtime error
Runtime error
Update clustering.py
Browse files- clustering.py +1 -1
clustering.py
CHANGED
@@ -637,7 +637,7 @@ def perform_clustering(
|
|
637 |
|
638 |
for distance_threshold in threshold_values:
|
639 |
log_message(distance_threshold)
|
640 |
-
rounded_distance_threshold = round(
|
641 |
clustering = AgglomerativeClustering(
|
642 |
n_clusters=None,
|
643 |
rounded_distance_threshold=rounded_distance_threshold,
|
|
|
637 |
|
638 |
for distance_threshold in threshold_values:
|
639 |
log_message(distance_threshold)
|
640 |
+
rounded_distance_threshold = round(distance_threshold, 6)
|
641 |
clustering = AgglomerativeClustering(
|
642 |
n_clusters=None,
|
643 |
rounded_distance_threshold=rounded_distance_threshold,
|