Skip to content

Commit

Permalink
OA: Design updates on cluster analysis #1015
Browse files Browse the repository at this point in the history
  • Loading branch information
detlefarend committed Jun 10, 2024
1 parent c9cb4dc commit 3e0d4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mlpro/oa/streams/tasks/clusteranalyzers/basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def _get_cluster_relations( self,

if p_scope == self.C_RESULT_SCOPE_MAX:
# Cluster with highest membership value is buffered
if ( cluster_max_results is None ) or ( result_abs > cluster_max_result[1] ):
if ( cluster_max_results is None ) or ( result_abs > cluster_max_results[1] ):
cluster_max_results = ( cluster, result_abs )
else:
list_results_abs.append( (cluster, result_abs) )
Expand Down

0 comments on commit 3e0d4bc

Please sign in to comment.