Return-Path: X-Original-To: apmail-mahout-user-archive@www.apache.org Delivered-To: apmail-mahout-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5F7C91199C for ; Mon, 1 Sep 2014 10:44:25 +0000 (UTC) Received: (qmail 6415 invoked by uid 500); 1 Sep 2014 10:44:23 -0000 Delivered-To: apmail-mahout-user-archive@mahout.apache.org Received: (qmail 6353 invoked by uid 500); 1 Sep 2014 10:44:23 -0000 Mailing-List: contact user-help@mahout.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@mahout.apache.org Delivered-To: mailing list user@mahout.apache.org Received: (qmail 6341 invoked by uid 99); 1 Sep 2014 10:44:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Sep 2014 10:44:23 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of sarakhodeir@gmail.com designates 209.85.216.41 as permitted sender) Received: from [209.85.216.41] (HELO mail-qa0-f41.google.com) (209.85.216.41) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Sep 2014 10:43:56 +0000 Received: by mail-qa0-f41.google.com with SMTP id m5so4881177qaj.28 for ; Mon, 01 Sep 2014 03:43:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=9Gg5o3JOxEfvnLCPeKXZT2QL23tokEpqee+605MYb4c=; b=RSQY2xbZTU2oefBoPBhNUm1+qZC0/LzUJ1zIbH0NMPZCTSVT+miKzLAfwuzsMxhbXM 8uvwegMzjAUFFjq+CMv+oAxiAzQaD5f6euw84vxTSDSn9/is0s1aKY/+5HfMsgWs7Ttl eEAtcJFigOejA0NqL8GgaDgCvxqhvJD4fh5g/Ls1DXN8D/mKhD1wNbwH1OZpHWm4JTMH hGRdFArYapgl0FiYhh0sdf/5te4sp1lP2sfEaE18jWqIdhP54JkW0VYTKFAmgPKd0IIO LoKDIBFesg05gv3x9n/ZMMhrhHxzhOATavWrmZBeDuHeGeRwpHVI8/kdO9+3lRDG/5v8 cHPw== MIME-Version: 1.0 X-Received: by 10.140.84.231 with SMTP id l94mr40614896qgd.84.1409568235311; Mon, 01 Sep 2014 03:43:55 -0700 (PDT) Received: by 10.140.95.149 with HTTP; Mon, 1 Sep 2014 03:43:55 -0700 (PDT) In-Reply-To: References: Date: Mon, 1 Sep 2014 13:43:55 +0300 Message-ID: Subject: Re: Urgent questions From: sara khodeir To: user@mahout.apache.org Content-Type: multipart/alternative; boundary=001a11c1198af3d9fa0501fead8c X-Virus-Checked: Checked by ClamAV on apache.org --001a11c1198af3d9fa0501fead8c Content-Type: text/plain; charset=UTF-8 Yes that's the same command I'm using, and yes that is what I'm referring to. On Mon, Sep 1, 2014 at 1:23 PM, tuxdna wrote: > On Sun, Aug 31, 2014 at 4:47 PM, sara khodeir > wrote: > > I'm curious what the difference between the predictors and features are > in > > the logistic regression model, what is the point of having features if it > > predicts using the predictors. > > > > Features are the data points of your data-set. Predictors are the data > points you choose for learning, from the features. > > > > Also,I am trying to include more features than can fit into the command > > line so I wrote a file of the parameters and I'm trying to run it like > this > > ./mahout "filepath" but this doesn't work. Does anyone know how I can do > > this? > > What version of Mahout are you using? > What exact commands are you running? > > You can trail logistic regression like so: > > $ mahout trainlogistic --input donut.csv --output ./model --target > color --categories 2 --predictors x y --types numeric --features 20 > --passes 100 --rate 50 > > And then evaluate it like so: > > $ mahout runlogistic --input donut-test.csv --model ./model --auc > --confusion > > It is not clear with your description, what steps you are following. > > Are you referring to "--predictors x y" part of the command line arguments? > > > /tuxdna > --001a11c1198af3d9fa0501fead8c--