Skip to content

Commit

Permalink
try fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
TimotheeMathieu committed Nov 5, 2024
1 parent ebcbd56 commit fa315a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn_extra/robust/_robust_weighted_estimator_helper.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ cpdef np.ndarray[floating] _kmeans_loss(np.ndarray[floating, ndim=2, mode='c'] X
for i in range(n_samples):
for j in range(n_features):
centers[labels[i], j] += X[i, j]
num_in_cluster[labels[i]] += 1
num_in_cluster[labels[i]] = num_in_cluster[labels[i]] + 1

for i in range(n_classes):
for j in range(n_features):
Expand Down

0 comments on commit fa315a9

Please sign in to comment.