lewismc commented on a change in pull request #31: SDAP-118 create a new 
ranking module
URL: 
https://github.com/apache/incubator-sdap-mudrod/pull/31#discussion_r199279608
 
 

 ##########
 File path: 
ranking/src/main/java/org/apache/sdap/mudrod/ranking/traindata/ExpertRankTrainData.java
 ##########
 @@ -59,17 +59,25 @@
    * @param multFiles true if multiple files in directory need to be processed 
and false if
    *                  only a single file needs to be processed
    */
-  public DataGenerator(String sourceDir, String resultDir, boolean multFiles) {
+  public ExpertRankTrainData(String sourceDir, String resultDir, boolean 
multFiles) {
     mySourceDir = sourceDir;
     myResultDir = resultDir;
     isMultFiles = multFiles;
   }
+  
+  /**
+   * prepare data for experts to evaluate.
+   */
+  public void prepareDataForExperts() {
+           parseFile();
+           writeCSVfile(myMasterList);
+  }
 
   /**
    * Responsible for invoking the processing of data file(s) and their 
subsequent storage
    * into a user specified directory.
    */
-  public void process() {
+  public void convert2TrainSet() {
 
 Review comment:
   Change ```convert2TrainSet``` to ```convertToTrainSet```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to