Skip to content

Commit 3b41b0d

Browse files
committed
Start prepping for 0.6.
1 parent cb53fa4 commit 3b41b0d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ Performance
3838
-----------
3939

4040
Significant effort has been put into making the hdbscan implementation as fast as
41-
possible. It is more than ten as fast as the reference implementation in Java (full
42-
benchmarks forthcoming),
43-
and is currently faster highly optimized single linkage implementations in C and C++.
44-
`version 0.3 performance can be seen in this notebook <http://nbviewer.jupyter.org/github/lmcinnes/hdbscan/blob/master/notebooks/Benchmarking%20scalability%20of%20clustering%20implementations.ipynb>`_ .
45-
Versions 0.4 and 0.5 bring a new minimum spanning tree algorithm, and further
46-
optimizations that provide dramatic speedups, particularly for low dimensional data.
41+
possible. It is `orders of magnitude faster then the reference implementation <https://nbviewerjupyter.org/github/lmcinnes/hdbscan/blobmaster/notebooks/Python%20vs%20Java.ipynb>`_ in Java,
42+
and is currently faster than highly optimized single linkage implementations in C and C++.
43+
`version 0.6 performance can be seen in this notebook <http://nbviewer.jupyter.org/github/lmcinnes/hdbscan/blob/master/notebooks/Benchmarking%20scalability%20of%20clustering%20implementations-v0.6.ipynb>`_ .
44+
In particular `performance on low dimensional data is better than sklearn's DBSCAN <http://nbviewer.jupyter.org/github/lmcinnes/hdbscan/blob/master/notebooks/Benchmarking%20scalability%20of%20clustering%20implementations%202D%20v0.6.ipynb>`_ ,
45+
and via support for caching with joblib, re-clustering with different parameters
46+
can be almost free.
4747

4848
------------------------
4949
Additional functionality

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def readme():
3434

3535
configuration = {
3636
'name' : 'hdbscan',
37-
'version' : '0.5',
37+
'version' : '0.6',
3838
'description' : 'Clustering based on density with variable density clusters',
3939
'long_description' : readme(),
4040
'classifiers' : [

0 commit comments

Comments
 (0)