Skip to content

Commit

Permalink
Update clustering.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesjcai committed Jan 21, 2021
1 parent ca5e17b commit f22d158
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/clustering/clustering.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ module Clustering

using Clustering

export kmeans
export kmeans,
affprop

function kmeans(X, k)
Clustering.kmeans(X, k);
end

function affprop(X, k)
Clustering.affprop(X, k);
end

end

1 comment on commit f22d158

@jamesjcai
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

Please sign in to comment.