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 2013/09/22 23:44:47 UTC

svn commit: r1525455 - /mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java

Author: sslavic
Date: Sun Sep 22 21:44:47 2013
New Revision: 1525455

URL: http://svn.apache.org/r1525455
Log:
Consistently using just "CSV" in javadoc, instead of mixed use of "CSV" and "csv", and at the same time made Eclipse IDE spell checker happy

Modified:
    mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java

Modified: mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java
URL: http://svn.apache.org/viewvc/mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java?rev=1525455&r1=1525454&r2=1525455&view=diff
==============================================================================
--- mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java (original)
+++ mahout/trunk/core/src/main/java/org/apache/mahout/classifier/sgd/CsvRecordFactory.java Sun Sep 22 21:44:47 2013
@@ -43,7 +43,7 @@ import java.util.Map;
 import java.util.Set;
 
 /**
- * Converts csv data lines to vectors.
+ * Converts CSV data lines to vectors.
  *
  * Use of this class proceeds in a few steps.
  * <ul>
@@ -101,7 +101,7 @@ public class CsvRecordFactory implements
       "Unable to construct type converter... shouldn't be possible";
 
   /**
-   * Parse a single line of csv-formatted text.
+   * Parse a single line of CSV-formatted text.
    *
    * Separated to make changing this functionality for the entire class easier
    * in the future.
@@ -250,7 +250,7 @@ public class CsvRecordFactory implements
 
 
   /**
-   * Decodes a single line of csv data and records the target and predictor variables in a record.
+   * Decodes a single line of CSV data and records the target and predictor variables in a record.
    * As a side effect, features are added into the featureVector.  Returns the value of the target
    * variable.
    *
@@ -281,7 +281,7 @@ public class CsvRecordFactory implements
   }
   
   /***
-   * Decodes a single line of csv data and records the target(if retrunTarget is true)
+   * Decodes a single line of CSV data and records the target(if retrunTarget is true)
    * and predictor variables in a record. As a side effect, features are added into the featureVector.
    * Returns the value of the target variable. When used during classify against production data without
    * target value, the method will be called with returnTarget = false.