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 CEC6318EA6 for ; Mon, 1 Jun 2015 05:34:26 +0000 (UTC) Received: (qmail 46218 invoked by uid 500); 1 Jun 2015 05:34:20 -0000 Delivered-To: apmail-mahout-commits-archive@mahout.apache.org Received: (qmail 46099 invoked by uid 500); 1 Jun 2015 05:34:19 -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 44743 invoked by uid 99); 1 Jun 2015 05:34:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jun 2015 05:34:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 00E2EDFFD7; Mon, 1 Jun 2015 05:34:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dlyubimov@apache.org To: commits@mahout.apache.org Date: Mon, 01 Jun 2015 05:34:46 -0000 Message-Id: <11464839dce6413f891c257bfd5780aa@git.apache.org> In-Reply-To: <362d474d877e4507b121e3639b8627a3@git.apache.org> References: <362d474d877e4507b121e3639b8627a3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [29/51] [partial] mahout git commit: docs Mahout 0.10.1 release http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/TrainNewsGroups.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/TrainNewsGroups.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/TrainNewsGroups.html new file mode 100644 index 0000000..0f076ae --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/TrainNewsGroups.html @@ -0,0 +1,270 @@ + + + + + + +TrainNewsGroups (Mahout Examples 0.10.1 API) + + + + + + + + + + + +
+
org.apache.mahout.classifier.sgd
+

Class TrainNewsGroups

+
+
+ +
+
    +
  • +
    +
    +
    public final class TrainNewsGroups
    +extends Object
    +
    Reads and trains an adaptive logistic regression model on the 20 newsgroups data. + The first command line argument gives the path of the directory holding the training + data. The optional second argument, leakType, defines which classes of features to use. + Importantly, leakType controls whether a synthetic date is injected into the data as + a target leak and if so, how. +

    + The value of leakType % 3 determines whether the target leak is injected according to + the following table: +

    + + + + +
    0No leak injected
    1Synthetic date injected in MMM-yyyy format. This will be a single token and + is a perfect target leak since each newsgroup is given a different month
    2Synthetic date injected in dd-MMM-yyyy HH:mm:ss format. The day varies + and thus there are more leak symbols that need to be learned. Ultimately this is just + as big a leak as case 1.
    +

    + Leaktype also determines what other text will be indexed. If leakType is greater + than or equal to 6, then neither headers nor text body will be used for features and the leak is the only + source of data. If leakType is greater than or equal to 3, then subject words will be used as features. + If leakType is less than 3, then both subject and body text will be used as features. +

    + A leakType of 0 gives no leak and all textual features. +

    + See the following table for a summary of commonly used values for leakType +

    + + + + + + + + + + + + + + + +
    leakTypeLeak?Subject?Body?

    0noyesyes
    1mmm-yyyyyesyes
    2dd-mmm-yyyyyesyes

    3noyesno
    4mmm-yyyyyesno
    5dd-mmm-yyyyyesno

    6nonono
    7mmm-yyyynono
    8dd-mmm-yyyynono

    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/ValidateAdaptiveLogistic.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/ValidateAdaptiveLogistic.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/ValidateAdaptiveLogistic.html new file mode 100644 index 0000000..c1a086d --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/ValidateAdaptiveLogistic.html @@ -0,0 +1,227 @@ + + + + + + +ValidateAdaptiveLogistic (Mahout Examples 0.10.1 API) + + + + + + + + + + + +
+
org.apache.mahout.classifier.sgd
+

Class ValidateAdaptiveLogistic

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.mahout.classifier.sgd.ValidateAdaptiveLogistic
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public final class ValidateAdaptiveLogistic
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/BankMarketingClassificationMain.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/BankMarketingClassificationMain.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/BankMarketingClassificationMain.html new file mode 100644 index 0000000..cdbaf14 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/BankMarketingClassificationMain.html @@ -0,0 +1,303 @@ + + + + + + +BankMarketingClassificationMain (Mahout Examples 0.10.1 API) + + + + + + + + + + + +
+
org.apache.mahout.classifier.sgd.bankmarketing
+

Class BankMarketingClassificationMain

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.mahout.classifier.sgd.bankmarketing.BankMarketingClassificationMain
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class BankMarketingClassificationMain
    +extends Object
    +
    Uses the SGD classifier on the 'Bank marketing' dataset from UCI. + + See http://archive.ics.uci.edu/ml/datasets/Bank+Marketing + + Learn when people accept or reject an offer from the bank via telephone based on income, age, education and more.
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BankMarketingClassificationMain

        +
        public BankMarketingClassificationMain()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCall.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCall.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCall.html new file mode 100644 index 0000000..eac5278 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCall.html @@ -0,0 +1,310 @@ + + + + + + +TelephoneCall (Mahout Examples 0.10.1 API) + + + + + + + + + + + +
+
org.apache.mahout.classifier.sgd.bankmarketing
+

Class TelephoneCall

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCall
    • +
    +
  • +
+
+
    +
  • +
    +
    +
    public class TelephoneCall
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCallParser.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCallParser.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCallParser.html new file mode 100644 index 0000000..354e5c6 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/TelephoneCallParser.html @@ -0,0 +1,271 @@ + + + + + + +TelephoneCallParser (Mahout Examples 0.10.1 API) + + + + + + + + + + + +
+
org.apache.mahout.classifier.sgd.bankmarketing
+

Class TelephoneCallParser

+
+
+
    +
  • java.lang.Object
  • +
  • +
      +
    • org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCallParser
    • +
    +
  • +
+
+ +
+
+ +
+
+ +
+
+ + + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/BankMarketingClassificationMain.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/BankMarketingClassificationMain.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/BankMarketingClassificationMain.html new file mode 100644 index 0000000..ed5f474 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/BankMarketingClassificationMain.html @@ -0,0 +1,117 @@ + + + + + + +Uses of Class org.apache.mahout.classifier.sgd.bankmarketing.BankMarketingClassificationMain (Mahout Examples 0.10.1 API) + + + + + + + + + + +
+

Uses of Class
org.apache.mahout.classifier.sgd.bankmarketing.BankMarketingClassificationMain

+
+
No usage of org.apache.mahout.classifier.sgd.bankmarketing.BankMarketingClassificationMain
+ + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCall.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCall.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCall.html new file mode 100644 index 0000000..3c38a6a --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCall.html @@ -0,0 +1,157 @@ + + + + + + +Uses of Class org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCall (Mahout Examples 0.10.1 API) + + + + + + + + + + +
+

Uses of Class
org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCall

+
+
+ +
+ + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCallParser.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCallParser.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCallParser.html new file mode 100644 index 0000000..232b478 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/class-use/TelephoneCallParser.html @@ -0,0 +1,117 @@ + + + + + + +Uses of Class org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCallParser (Mahout Examples 0.10.1 API) + + + + + + + + + + +
+

Uses of Class
org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCallParser

+
+
No usage of org.apache.mahout.classifier.sgd.bankmarketing.TelephoneCallParser
+ + + + +

Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.

+ + http://git-wip-us.apache.org/repos/asf/mahout/blob/5221b0a7/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/package-frame.html ---------------------------------------------------------------------- diff --git a/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/package-frame.html b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/package-frame.html new file mode 100644 index 0000000..04f1a07 --- /dev/null +++ b/0.10.1/docs/mahout-examples/org/apache/mahout/classifier/sgd/bankmarketing/package-frame.html @@ -0,0 +1,22 @@ + + + + + + +org.apache.mahout.classifier.sgd.bankmarketing (Mahout Examples 0.10.1 API) + + + + +

org.apache.mahout.classifier.sgd.bankmarketing

+ + +