Skip to content

Commit 8dabd26

Browse files
authored
Merge pull request #112 from PyDataBlog/finalv1
Public release v1.0.0
2 parents fb11db2 + ccec1e1 commit 8dabd26

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
test/experiments.jl
1515
/extras/.ipynb_checkpoints/*
1616
.Rproj.user
17+

Project.toml

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2626

2727
[targets]
2828
test = ["Test", "Random", "Suppressor", "MLJBase", "StableRNGs"]
29+

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2FPyDataBlog%2FParallelKMeans.jl.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2FPyDataBlog%2FParallelKMeans.jl?ref=badge_shield)
99
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/PyDataBlog/ParallelKMeans.jl/master)
1010
_________________________________________________________________________________________________________
11-
**Authors:** [Bernard Brenyah](https://www.linkedin.com/in/bbrenyah/) & [Andrey Oskin](https://www.linkedin.com/in/andrej-oskin-b2b03959/)
11+
**Authors:** [Bernard Brenyah](https://www.linkedin.com/in/bbrenyah/) AND [Andrey Oskin](https://www.linkedin.com/in/andrej-oskin-b2b03959/)
1212
_________________________________________________________________________________________________________
1313

1414
<div align="center">

docs/src/index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,12 @@ ________________________________________________________________________________
212212
- 0.1.5 Added `Yinyang` algorithm.
213213
- 0.1.6 Added support for weighted k-means; Added `Coreset` algorithm; improved support for different types of the design matrix.
214214
- 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.
215-
- 0.1.8 Minor cleanup
216-
- 0.1.9 Added travis support for Julia 1.5
217-
- 0.2.0 Updated MLJ Interface
218-
- 0.2.1 Initial Mini-batch implementation
219-
- 0.2.2 Updated MLJInterface
220-
- 1.0.0 Stable public release
215+
- 0.1.8 Minor cleanup.
216+
- 0.1.9 Added travis support for Julia 1.5.
217+
- 0.2.0 Updated MLJ Interface.
218+
- 0.2.1 Initial Mini-batch implementation.
219+
- 0.2.2 Updated MLJInterface.
220+
- 1.0.0 Stable public release.
221221

222222
## Contributing
223223

extras/benchmark_plot.jl

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ using Chain
66

77
data = CSV.read("extras/updated_benchmarks_may_1.csv", DataFrame)
88

9-
#data2 = stack(data, 1:4)
10-
#unstack(data2, :variable, :package, :value) |> CSV.write("extras/wide.csv")
11-
129
long_data = @chain data begin
1310
rename(_, [replace(x, " " => "_") for x in names(_)])
1411
rename(_, [replace(x, "_sample_(secs)" => "") for x in names(_)])

0 commit comments

Comments
 (0)