Clustering state of the art

Hi, I’m very new in Tensorflow, and I want to implement a neural network, for cluster commercial information, based on kmeans algorithm. but searching in the web, I found different implementations, and it get me confused about what is the latest and most effective way to implement kmean cluster or other cluster solution today using Tensorflow.

Hi Gustavo,

Kmeans is a ML algorithm and its only implementation in Tensorflow is experimental for now:

https://www.tensorflow.org/api_docs/python/tf/compat/v1/estimator/experimental/KMeans

If you are new to machine learning and AI I would suggest you to use the Sci-kit learn library which offers a number of great clustering algorithms :

Hope that helps :slight_smile:

1 Like

thank you very much apzk,
it was useful for me !!