Skip to content

Commit a556764

Browse files
committed
Maybe it failed because of these settings?
1 parent cfe7009 commit a556764

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/edu/stanford/nlp/coref/CorefProperties.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static boolean useGoldMentions(Properties props) {
129129

130130
public static final String OUTPUT_PATH_PROP = "coref.conllOutputPath";
131131
public static String conllOutputPath(Properties props) {
132-
String returnPath = props.getProperty("coref.conllOutputPath", "/u/scr/nlp/coref/logs/");
132+
String returnPath = props.getProperty("coref.conllOutputPath", "/u/nlp/data/coref/logs/");
133133
if ( ! returnPath.endsWith("/")) {
134134
returnPath += "/";
135135
}
@@ -144,7 +144,7 @@ public static void setInput(Properties props, Dataset d) {
144144
}
145145

146146
private static String getDataPath(Properties props) {
147-
String returnPath = props.getProperty("coref.data", "/u/scr/nlp/data/conll-2012/");
147+
String returnPath = props.getProperty("coref.data", "/u/nlp/data/coref/conll-2012/");
148148
if ( ! returnPath.endsWith("/")) {
149149
returnPath += "/";
150150
}

0 commit comments

Comments
 (0)