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 9d34dce commit ebcbd56
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 @@ -70,7 +70,7 @@ cpdef np.ndarray[floating] _kmeans_loss(np.ndarray[floating, ndim=2, mode='c'] X
np.ndarray[floating, ndim=2] centers = np.zeros([n_classes,
n_features],
dtype = dtype)
np.ndarray[int] num_in_cluster = np.zeros(n_classes, dtype = int)
np.ndarray[np.int] num_in_cluster = np.zeros(n_classes, dtype = np.int)
np.ndarray[floating] inertias = np.zeros(n_samples, dtype = dtype)
for i in range(n_samples):
for j in range(n_features):
Expand Down

0 comments on commit ebcbd56

Please sign in to comment.