Re: K Means Clustering Explanation

2018-03-04 Thread Alessandro Solimando
Hi Matt, unfortunately I have no code pointer at hand. I will sketch how to accomplish this via the API, it will for sure at least help you getting started. 1) ETL + vectorization (I assume your feature vector to be named "features") 2) You run a clustering algorithm (say KMeans:

Re: K Means Clustering Explanation

2018-03-02 Thread Matt Hicks
Thanks Alessandro and Christoph.  I appreciate the feedback, but I'm still having issues determining how to actually accomplish this with the API. Can anyone point me to an example in code showing how to accomplish this? On Fri, Mar 2, 2018 2:37 AM, Alessandro Solimando

Re: K Means Clustering Explanation

2018-03-02 Thread Alessandro Solimando
Hi Matt, similarly to what Christoph does, I first derive the cluster id for the elements of my original dataset, and then I use a classification algorithm (cluster ids being the classes here). For this method to be useful you need a "human-readable" model, tree-based models are generally a good

Re: K Means Clustering Explanation

2018-03-01 Thread Christoph Brücke
Hi Matt, I see. You could use the trained model to predict the cluster id for each training point. Now you should be able to create a dataset with your original input data and the associated cluster id for each data point in the input data. Now you can group this dataset by cluster id and