You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by gs...@apache.org on 2010/02/14 23:11:17 UTC

svn commit: r910087 - /lucene/mahout/trunk/bin/mahout

Author: gsingers
Date: Sun Feb 14 22:11:17 2010
New Revision: 910087

URL: http://svn.apache.org/viewvc?rev=910087&view=rev
Log:
Add FPGrowth Driver

Modified:
    lucene/mahout/trunk/bin/mahout

Modified: lucene/mahout/trunk/bin/mahout
URL: http://svn.apache.org/viewvc/lucene/mahout/trunk/bin/mahout?rev=910087&r1=910086&r2=910087&view=diff
==============================================================================
--- lucene/mahout/trunk/bin/mahout (original)
+++ lucene/mahout/trunk/bin/mahout Sun Feb 14 22:11:17 2010
@@ -57,6 +57,7 @@
   echo "  clusterdump           dump clusters from a sequence file"
   echo "  dirchlet              run Dirchlet clustering"
   echo "  fkmeans               run fuzzy kmeans clustering"
+  echo "  fpg                   run FPGrowth Driver for freq. pattern mining"
   echo "  kmeans                run kmeans clustering"
   echo "  lda                   run LDA clustering"
   echo "  lucenevector          generate vectors from a lucene index"
@@ -183,6 +184,8 @@
   CLASS=org.apache.mahout.clustering.fuzzykmeans.FuzzyKMeansDriver
 elif [ "$COMMAND" = "lda" ] ; then
   CLASS=org.apache.mahout.clustering.lda.LDADriver
+elif [ "$COMMAND" = "fpg" ] ; then
+  CLASS=org.apache.mahout.fpm.pfpgrowth.FPGrowthDriver  
 elif [ "$COMMAND" = "dirichlet" ] ; then
   CLASS=org.apache.mahout.clustering.dirichlet.DirichletDriver
 elif [ "$COMMAND" = "meanshift" ] ; then