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: docs/src/index.md
+7-4
Original file line number
Diff line number
Diff line change
@@ -51,13 +51,15 @@ pkg> add ParallelKMeans
51
51
The few (and selected) brave ones can simply grab the current experimental features by simply adding the experimental branch to your development environment after invoking the package manager with `]`:
52
52
53
53
```julia
54
-
dev git@github.com:PyDataBlog/ParallelKMeans.jl.git
54
+
pkg> add ParallelKMeans#experimental
55
55
```
56
56
57
-
Don't forget to checkout the experimental branch and you are good to go with bleeding edge features and breakages!
57
+
You are good to go with bleeding edge features and breakages!
58
58
59
-
```bash
60
-
git checkout experimental
59
+
To revert to a stable version, you can simply run:
60
+
61
+
```julia
62
+
pkg> free ParallelKMeans
61
63
```
62
64
63
65
## Features
@@ -78,6 +80,7 @@ git checkout experimental
78
80
-[X] Support of MLJ Random generation hyperparameter.
79
81
-[ ] Support for other distance metrics supported by [Distances.jl](https://github.com/JuliaStats/Distances.jl#supported-distances).
80
82
-[ ] Implementation of [Geometric methods to accelerate k-means algorithm](http://cs.baylor.edu/~hamerly/papers/sdm2016_rysavy_hamerly.pdf).
83
+
-[ ] Support of MLJ Random generation hyperparameter.
81
84
-[ ] Native support for tabular data inputs outside of MLJModels' interface.
0 commit comments