File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed
Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1616#
1717
1818
19+ from pkg_resources import resource_string
20+
1921from .method .hierarchical import HierarchicalClustering
2022from .method .kmeans import KMeansClustering
2123from .util import ClusteringError
24+
25+ __version__ = resource_string ('cluster' , 'version.txt' ).decode ('ascii' ).strip ()
Original file line number Diff line number Diff line change 1+ 1.3.0
Original file line number Diff line number Diff line change 1+ Changelog
2+ =========
3+
4+ Release 1.3.0
5+ -------------
6+
7+ * Performance improvments for hierarchical clustering (at the cost of memory)
8+ * Cluster instances are now iterable.It will iterate over each element,
9+ resulting in a flat list of items.
10+ * New option to specify a progress method. This method will be called on each
11+ iteration for hierarchical clusters. It gives users a way to present to
12+ progress on screen.
13+ * The library now also has a ``__version__ `` member.
Original file line number Diff line number Diff line change 11Welcome to python-cluster's documentation!
22==========================================
33
4+ Index
5+ -----
6+
7+ .. toctree ::
8+ :maxdepth: 1
9+
10+ changelog
11+
12+
13+ Introduction
14+ ------------
15+
416Implementation of cluster algorithms in pure Python.
517
618As this is exacuted in the Python runtime, the code runs slower than similar
You can’t perform that action at this time.
0 commit comments