Skip to content

Commit 8c51f4b

Browse files
committed
Rehome the conll-2012 scorer. Not sure if the 2011 scorer can be recovered easily yet
Update a couple other settings as well
1 parent 54aaf2c commit 8c51f4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
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
}
@@ -172,7 +172,7 @@ public static String getInputPath(Properties props) {
172172
}
173173

174174
public static String getScorerPath(Properties props) {
175-
return props.getProperty("coref.scorer", "/u/scr/nlp/data/conll-2012/scorer/v8.01/scorer.pl");
175+
return props.getProperty("coref.scorer", "/u/nlp/data/coref/conll-2012/scorer/v8.01/scorer.pl");
176176
}
177177

178178
public static Locale getLanguage(Properties props) {

0 commit comments

Comments
 (0)