Can anyone explain how to run hierarchical kmeans in openimaj
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
I've created two examples showing how the Hierarchical K-Means can be used programmatically. The first shows how it can be done with data in an array:
https://sourceforge.net/p/openimaj/code/1422/tree/trunk/demos/examples/src/main/java/org/openimaj/examples/ml/clustering/kmeans/HierarchicalKMeansExample.java
And the second with data streamed from disk (useful if all the data can't fit in RAM):
https://sourceforge.net/p/openimaj/code/1422/tree/trunk/demos/examples/src/main/java/org/openimaj/examples/ml/clustering/kmeans/BigDataClusterExample.java
Both these examples use the new API in the latest OpenIMAJ snapshots. See this blog post for instructions on using the latest snapshots with maven.
Thanks a lot that was useful. Will modify your code for hierarchical kmeans for SIFT features.
Can anyone explain how to run hierarchical kmeans in openimaj
I've created two examples showing how the Hierarchical K-Means can be used programmatically.
The first shows how it can be done with data in an array:
https://sourceforge.net/p/openimaj/code/1422/tree/trunk/demos/examples/src/main/java/org/openimaj/examples/ml/clustering/kmeans/HierarchicalKMeansExample.java
And the second with data streamed from disk (useful if all the data can't fit in RAM):
https://sourceforge.net/p/openimaj/code/1422/tree/trunk/demos/examples/src/main/java/org/openimaj/examples/ml/clustering/kmeans/BigDataClusterExample.java
Both these examples use the new API in the latest OpenIMAJ snapshots. See this blog post for instructions on using the latest snapshots with maven.
Thanks a lot that was useful.
Will modify your code for hierarchical kmeans for SIFT features.