Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

line (travel path) clustering machine learning algorithm [closed]

I have series of line data (2-3 connected points). What is the best machine learning algorithm that I can use to be able to classify lines to their location similarities? (image below)

Preferably python libraries such as SciKit-Learn.

CLICK HERE TO SEE THE IMAGE

Edit: I have tried DBSCAN, but the problem I faced was if there are two lines intersect each other, sometimes DBSCAN consider them to one group even though they are completely in different direction.

Here is a solution I found so far:

GeoPath Clustering Algorithm

The idea here is to cluster geo paths that travel very similar to each other into groups.

Steps:

1- Cluster lines based on slope

2- Within each cluster from step 1, find centriod of lines and by using k-mean algorithm cluster them into smaller groups

3- Within each geoup from step 2, calculate lenght of each line and group lines within defined length threshold

Result will be small groups of lines that have similar slope, close to each other and with similar travel distance.

Here are screen shots of visualization: Yellow lines are all lines and red are cluster of paths travel together.enter image description here

enter image description here

enter image description here

like image 605
user2146024 Avatar asked Jul 29 '16 21:07

user2146024


People also ask

How can you prevent a clustering algorithm from getting stuck?

How can you prevent a clustering algorithm from getting stuck in bad local optima? C.K-Means clustering algorithm has the drawback of converging at local minima which can be prevented by using multiple radom initializations.

Which version of the clustering algorithm is most sensitive to?

Out of all the options, K-Means clustering algorithm is most sensitive to outliers as it uses the mean of cluster data points to find the cluster center.

What is clustering algorithm in machine learning?

In machine learning too, we often group examples as a first step to understand a subject (data set) in a machine learning system. Grouping unlabeled examples is called clustering. As the examples are unlabeled, clustering relies on unsupervised machine learning.

How does Birch clustering work?

BIRCH is a scalable clustering method based on hierarchy clustering and only requires a one-time scan of the dataset, making it fast for working with large datasets. This algorithm is based on the CF (clustering features) tree. In addition, this algorithm uses a tree-structured summary to create clusters.


1 Answers

I'll throw an answer since I think the current one is incomplete...and I also think the comment of "simple heuristic" is premature. I think that if you cluster on points, you'll get a different result than what your diagram depicts. As the clusters will be near the end-points and you wouldn't get your nice ellipses.

So, if your data really does behave similarly to how you display it. I would take a stab at turning each set of 2/3 points into a longer list of points that basically trace out the lines. (you will need to experiment on how dense)

Then run HDBSCAN on the result see video ( https://www.youtube.com/watch?v=AgPQ76RIi6A ) to get your clusters. I believe "pip install hdbscan" installs it.

Now, when testing a new sample, first decompose it into many(N) points and fit them with your hdbscan model. I reckon that if you take a majority voting approach with your N points, you'll get the best overall cluster to which the "line" belongs.

So, while I sort of agree with the "simple heuristic" comment, it's not so simple if you want the whole thing automated. And once you watch the video you may be convinced that HDBSCAN, because of its density-based algorithm, will suit this problem(if you decide to create many points from each sample).

I'll wrap up by saying that I'm sure there are line-intersection models that have done this before...and that there does exist heuristics and rules that can do the job. Likely, they're computationally more economical too. My answer is just something organic using sklearn as you requested...and I haven't even tested it! It's just how I would proceed if I were in your shoes.

edit

I poked around and there a couple of line similarity measures you can possibly try. Frechet and Hausdorff distance measures.

Frechet: http://arxiv.org/pdf/1307.6628.pdf Hausdorff: distance matrix of curves in python for a python example.

If you generate all pair-wise similarities and then group them according to similarity and/or into N bins, you can then call those bins your "clusters" (not kmeans clusters though!). For each new line, generate all similarities and see which bin it belongs to. I revise my original comment of possibly being computationally less intensive...you're lucky your lines only have 2 or 3 points!

like image 143
user1269942 Avatar answered Oct 20 '22 03:10

user1269942