Displaying 2 results from an estimated 2 matches for "clusteringalgorithm".
2016 Aug 17
2
KMeans - Evaluation Results
> How long does 200?300 documents take to cluster? How does it grow as more
> documents are included in the MSet? We'd expect an MSet of 1000 documents
> to take longer to cluster than one with 100, but the important thing is
> _how_ the time increases as the number of documents grows.
>
> Currently, the number of seconds taken for clustering a set of documents
for varying
2016 Aug 17
2
KMeans - Evaluation Results
...s (you can make one initially with no
> members, and move things bit by bit). Then gradually move through the
> classes that are used by its public API (such as Cluster).
>
> Note that this means you have to complete the refactor to introduce a
> Clusterer class first. (Or maybe 'ClusteringAlgorithm' might be clearer.)
>
> I'm not sure you need DocumentSet as you've implemented things (just
> provide iterators over the documents in the Cluster's API, and put the
> vector<Document> directly in the Cluster). That should make things slightly
> easier.
>
>...