Skip to content

Commit

Permalink
Maybe it failed because of these settings?
Browse files Browse the repository at this point in the history
  • Loading branch information
AngledLuffa committed May 6, 2024
1 parent cfe7009 commit a556764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/edu/stanford/nlp/coref/CorefProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static boolean useGoldMentions(Properties props) {

public static final String OUTPUT_PATH_PROP = "coref.conllOutputPath";
public static String conllOutputPath(Properties props) {
String returnPath = props.getProperty("coref.conllOutputPath", "/u/scr/nlp/coref/logs/");
String returnPath = props.getProperty("coref.conllOutputPath", "/u/nlp/data/coref/logs/");
if ( ! returnPath.endsWith("/")) {
returnPath += "/";
}
Expand All @@ -144,7 +144,7 @@ public static void setInput(Properties props, Dataset d) {
}

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

0 comments on commit a556764

Please sign in to comment.