Return-Path: X-Original-To: apmail-mahout-commits-archive@www.apache.org Delivered-To: apmail-mahout-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AACA910636 for ; Tue, 21 Jan 2014 20:57:31 +0000 (UTC) Received: (qmail 24209 invoked by uid 500); 21 Jan 2014 20:57:30 -0000 Delivered-To: apmail-mahout-commits-archive@mahout.apache.org Received: (qmail 24128 invoked by uid 500); 21 Jan 2014 20:57:30 -0000 Mailing-List: contact commits-help@mahout.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mahout.apache.org Delivered-To: mailing list commits@mahout.apache.org Received: (qmail 24121 invoked by uid 99); 21 Jan 2014 20:57:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jan 2014 20:57:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Jan 2014 20:57:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CB16E23889BF; Tue, 21 Jan 2014 20:57:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1560178 - in /mahout/trunk/examples/bin: asf-email-examples.sh build-asf-email.sh build-cluster-syntheticcontrol.sh cluster-syntheticcontrol.sh Date: Tue, 21 Jan 2014 20:57:06 -0000 To: commits@mahout.apache.org From: ssc@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140121205706.CB16E23889BF@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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"