Skip to content

Commit

Permalink
fix after rebase for compressed kmeans
Browse files Browse the repository at this point in the history
  • Loading branch information
e-strauss committed Feb 13, 2025
1 parent 0381fea commit c9547d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ print("kmeans")

[data, Centering, ScaleFactor] = scale(X, TRUE, TRUE)
# terminates with result
[Y_n, C_n] = kmeans(X=data, k=16, runs= 1, max_iter=as.integer($4), eps= 1e-17, seed= 13, is_verbose=TRUE)
[Y_n, C_n] = kmeans(X=data, k=16, runs= 1, maxIter=as.integer($4), tol= 1e-17, seed= 13, verbose=TRUE)
print(sum(Y_n))

0 comments on commit c9547d4

Please # to comment.