You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a funny story actually led to the development of this package.
29
+
What started off as a personal toy project trying to re-construct the K-Means algorithm in native Julia blew up after into a heated discussion on the Julia Discourse forums after I asked for Julia optimizaition tips. Long story short, Julia community is an amazing one! Andrey Oskin offered his help and together, we decided to push the speed limits of Julia with a parallel implementation of the most famous clustering algorithm. The initial results were mind blowing so we have decided to tidy up the implementation and share with the world.
You can grab the latest stable version of this package by simply running in Julia.
36
+
Don't forget to Julia's package manager with `]`
32
37
33
-
```bash
38
+
```julia
39
+
pkg> add TextAnalysis
40
+
```
41
+
42
+
For the few (and selected) brave ones, one can simply grab the current experimental features by simply adding the experimental branch to your development environment after invoking the package manager with `]`:
34
43
44
+
```julia
45
+
dev git@github.com:PyDataBlog/ParallelKMeans.jl.git
35
46
```
36
47
48
+
Don't forget to checkout the experimental branch and you are good to go with bleeding edge features and breaks!
0 commit comments