You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by td...@apache.org on 2010/11/05 04:20:40 UTC

svn commit: r1031416 - in /mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd: SimpleCsv.java SimpleCsvExamples.java

Author: tdunning
Date: Fri Nov  5 03:20:40 2010
New Revision: 1031416

URL: http://svn.apache.org/viewvc?rev=1031416&view=rev
Log:
MAHOUT-539 - Changed class name

Added:
    mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsvExamples.java
      - copied, changed from r1031415, mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsv.java
Removed:
    mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsv.java

Copied: mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsvExamples.java (from r1031415, mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsv.java)
URL: http://svn.apache.org/viewvc/mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsvExamples.java?p2=mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsvExamples.java&p1=mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsv.java&r1=1031415&r2=1031416&rev=1031416&view=diff
==============================================================================
--- mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsv.java (original)
+++ mahout/trunk/examples/src/main/java/org/apache/mahout/classifier/sgd/SimpleCsvExamples.java Fri Nov  5 03:20:40 2010
@@ -53,7 +53,7 @@ import java.util.Random;
  * This doesn't demonstrate text encoding which is subject to somewhat different tricks.  The basic
  * idea of caching hash locations and byte level parsing still very much applies to text, however.
  */
-public class SimpleCsv {
+public class SimpleCsvExamples {
   public static final int SEPARATOR_CHAR = '\t';
   public static final String SEPARATOR = "\t";
   private static final int FIELDS = 100;