Content:
This week we will introduce DBSCAN. The primary objective of this week is to tie a knot on the Python previous weeks of learning Python by solving a larger exercise.
The problem you will be solving is a realistic problem which requires some programming, thinking and tinkering to solve.
Learning objectives:
After this week, you are supposed to know:
- How to implement DBSCAN
- How to work with Jaccard-distance
- How to write fast and efficient algorithms for processing data
Resources:
Read about DBSCAN and Jaccard distance.
Exercises:
Exercise 4.1:
Implement the DBSCAN clustering algorithm to work with Jaccard-distance as its metric. It should be able to handle sparse data.
We suggest that you implement the DBSCAN clustering algorithm as described in the Wikipedia article, linked to above. The algorithm should use Jaccard-distance (1 minus Jaccard index) when measuring distance between points. In this exercise two points that are exactly a distance epsilon apart are taken to be in the same cluster, thus greater-than-or-equal dist(a, b) <= epsilon
and not dist(a, b) < epsilon
should be used.
Your method should support a large number (~100,000) of sparse points in very high-dimensional space (~100,000 dimensions). This means that the points – even though they lie in very high dimensional space – only have few non-zero coordinates.
Debug and test your algorithm with the following:
- Use this data. The files are “pickled”, and must first be loaded with pickle. Once loaded, each file is formatted as a compressed sparse row matrix (csr_matrix), where each row corresponds to a point and each column to a dimension.
- For the five input files, use the following parameters
- File 1: eps=0.4 and M=2
- File 2: eps=0.3 and M=2
- File 3: eps=0.15 and M=2
- File 4: eps=0.15 and M=2
- File 5: eps=0.15 and M=2
- You should get this many clusters when running your algorithm on the five test files (also counting the special cluster of points not assigned to a cluster): 4, 6, 9, 394, 1692
Remember to describe how you process the data in order for the algorithm to work with very high dimensional data.
You should also document how many points is contained in the largest cluster for each of the 5 test files. The correct answers for this will be released for giving peer feedback.
It is much more important to have a solution which can only solve the first few input files correctly than a fancy solution solving none of them. There will be partial credit for the exercise even if you can only make a solution for the smallest input file.
To read the input matrices, you can use the following code:
import cPickle as pickle
X = pickle.load(open(filename, “r”))
and then X is a sparse matrix with one row for each point.
LikeLiked by 1 person
Note that my explanation of DBSCAN today at the board and slides was not entirely the same as the one given on Wikipedia. For M = 2, this does not make a difference though.
You are welcome to implement either version of the algorithm.
LikeLike
To load the files in Python 3, you can use the following:
mat = pickle.load(open(‘data_100points_100dims.dat’, ‘rb’), encoding=’latin1′)
LikeLike