Skip to content

Commit 296aeba

Browse files
committed
v0.1.7 beta release
1 parent 21759f7 commit 296aeba

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ ________________________________________________________________________________
6565
- Lightening fast implementation of K-Means clustering algorithm even on a single thread in native Julia.
6666
- Support for multi-theading implementation of K-Means clustering algorithm.
6767
- Kmeans++ initialization for faster and better convergence.
68-
- Implementation of all the variants of the K-Means algorithm.
68+
- Implementation of all available variants of the K-Means algorithm.
69+
- Support for all distance metrics available at [Distances.jl](https://github.com/JuliaStats/Distances.jl)
6970
- Supported interface as an [MLJ](https://github.com/alan-turing-institute/MLJ.jl#available-models) model.
7071

7172
_________________________________________________________________________________________________________

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ ________________________________________________________________________________
210210
- 0.1.4 Bug fixes.
211211
- 0.1.5 Added `Yinyang` algorithm.
212212
- 0.1.6 Added support for weighted k-means; Added `Coreset` algorithm; improved support for different types of the design matrix.
213-
- 0.1.7 Added `Yinyang` and `Coreset` support in MLJ interface; added `weights` support in MLJ; added RNG seed support in MLJ interface and through all algorithms.
213+
- 0.1.7 Added `Yinyang` and `Coreset` support in MLJ interface; added `weights` support in MLJ; added RNG seed support in MLJ interface and through all algorithms; added metric support.
214214

215215
## Contributing
216216

test/test07_coreset.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ end
6969

7070
@test res.converged == baseline.converged
7171
@test res.iterations == baseline.iterations
72-
@test floor(res.totalcost) == floor(baseline.totalcost)
72+
@test (res.totalcost - baseline.totalcost) 1
7373

7474
end
7575

0 commit comments

Comments
 (0)