An open API service indexing awesome lists of open source software.

https://github.com/isarandi/tensorflow-mean-shift

Mean-shift clustering algorithm in TensorFlow
https://github.com/isarandi/tensorflow-mean-shift

clustering mean-shift meanshift parallel tensorflow

Last synced: about 1 year ago
JSON representation

Mean-shift clustering algorithm in TensorFlow

Awesome Lists containing this project

README

          

# Mean shift clustering with TensorFlow

This is a parallelized implementation of the [mean shift](https://en.wikipedia.org/wiki/Mean_shift) clustering algorithm through TensorFlow.
This makes it easy to use on the GPU if you install TensorFlow with CUDA support.

I wrote this to better understand `tf.while_loop` and how to implement a nontrivial iterative algorithm in a TensorFlow graph. It only works in TensorFlow v1, or through the `tensorflow.compat.v1` module of TF2.