You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2014/01/21 21:57:06 UTC

svn commit: r1560178 - in /mahout/trunk/examples/bin: asf-email-examples.sh build-asf-email.sh build-cluster-syntheticcontrol.sh cluster-syntheticcontrol.sh

Author: ssc
Date: Tue Jan 21 20:57:06 2014
New Revision: 1560178

URL: http://svn.apache.org/r1560178
Log:
MAHOUT-1400 Remove references to deprecated and removed algorithms from examples scripts

Removed:
    mahout/trunk/examples/bin/asf-email-examples.sh
    mahout/trunk/examples/bin/build-asf-email.sh
    mahout/trunk/examples/bin/build-cluster-syntheticcontrol.sh
Modified:
    mahout/trunk/examples/bin/cluster-syntheticcontrol.sh

Modified: mahout/trunk/examples/bin/cluster-syntheticcontrol.sh
URL: http://svn.apache.org/viewvc/mahout/trunk/examples/bin/cluster-syntheticcontrol.sh?rev=1560178&r1=1560177&r2=1560178&view=diff
==============================================================================
--- mahout/trunk/examples/bin/cluster-syntheticcontrol.sh (original)
+++ mahout/trunk/examples/bin/cluster-syntheticcontrol.sh Tue Jan 21 20:57:06 2014
@@ -27,7 +27,7 @@ if [ "$1" = "--help" ] || [ "$1" = "--?"
   exit
 fi
 
-algorithm=( canopy kmeans fuzzykmeans dirichlet meanshift )
+algorithm=( canopy kmeans fuzzykmeans )
 if [ -n "$1" ]; then
   choice=$1
 else
@@ -35,8 +35,6 @@ else
   echo "1. ${algorithm[0]} clustering"
   echo "2. ${algorithm[1]} clustering"
   echo "3. ${algorithm[2]} clustering"
-  echo "4. ${algorithm[3]} clustering"
-  echo "5. ${algorithm[4]} clustering"
   read -p "Enter your choice : " choice
 fi
 echo "ok. You chose $choice and we'll use ${algorithm[$choice-1]} Clustering"