You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by ja...@apache.org on 2013/07/09 23:19:41 UTC

svn commit: r1501555 - /ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java

Author: james-masanz
Date: Tue Jul  9 21:19:41 2013
New Revision: 1501555

URL: http://svn.apache.org/r1501555
Log:
send output to appropriate dirs for dev and test if there are dev and test input dirs, don't put all output into same ("train") dir [fix 2 typos or copy/paste errors]

Modified:
    ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java

Modified: ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java
URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java?rev=1501555&r1=1501554&r2=1501555&view=diff
==============================================================================
--- ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java (original)
+++ ctakes/trunk/ctakes-assertion/src/main/java/org/apache/ctakes/assertion/train/ReadAndPreprocessForAttributeModels.java Tue Jul  9 21:19:41 2013
@@ -31,16 +31,16 @@ public class ReadAndPreprocessForAttribu
 			}
 			params.add("--train-dir"); 		params.add(froot);
 
-			// Some corpora (SHARP) may have predetermined dev/test splits. Check AssertionConst.
+			// Some corpora (SHARP) may have predetermined dev/test splits. Check {link: AssertionConst}.
 			if (AssertionConst.preprocessForDev.containsKey(source) ) {
-				String fdev = AssertionConst.preprocessRootDirectory.get(source);
+				String fdev = AssertionConst.preprocessForDev.get(source);
 				if (!(new File(fdev).exists())) {
 					(new File(fdev)).mkdir();
 				}
 				params.add("--dev-dir"); 	params.add(fdev);
 			}
 			if (AssertionConst.preprocessForTest.containsKey(source) ) {
-				String ftest = AssertionConst.preprocessRootDirectory.get(source);
+				String ftest = AssertionConst.preprocessForTest.get(source);
 				if (!(new File(ftest).exists())) {
 					(new File(ftest)).mkdir();
 				}