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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ You can grab the latest stable version of this package by simply running in Juli
29
29
Don't forget to Julia's package manager with `]`
30
30
31
31
```julia
32
-
pkg> add TextAnalysis
32
+
pkg> add ParallelKMeans
33
33
```
34
34
35
35
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 `]`:
Copy file name to clipboardExpand all lines: docs/src/index.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ You can grab the latest stable version of this package by simply running in Juli
21
21
Don't forget to Julia's package manager with `]`
22
22
23
23
```julia
24
-
pkg> add TextAnalysis
24
+
pkg> add ParallelKMeans
25
25
```
26
26
27
27
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 `]`:
@@ -38,13 +38,14 @@ git checkout experimental
38
38
## Features
39
39
- Lightening fast implementation of Kmeans clustering algorithm even on a single thread in native Julia.
40
40
- Support for multi-theading implementation of Kmeans clustering algorithm.
41
-
- Kmeans++ initialization for faster and better convergence.
41
+
-'Kmeans++' initialization for faster and better convergence.
42
42
- Modified version of Elkan's Triangle inequality to speed up K-Means algorithm.
43
43
44
44
45
45
## Pending Features
46
46
-[X] Implementation of Triangle inequality based on [Elkan C. (2003) "Using the Triangle Inequality to Accelerate
0 commit comments