July 2021
Intermediate to advanced
768 pages
25h 23m
English
This chapter covers
In the previous chapter we introduced clustering and described three different approaches to data partitioning: k-means, DBSCAN, and OPTICS.
All these algorithms use a single-thread approach, where all the operations are executed sequentially in the same thread.1 This is the point where we should question our design: Is it really necessary to run these algorithms sequentially?
During the ...