Skip to content

Commit

Permalink
Add groupPrefix to EvalPlan
Browse files Browse the repository at this point in the history
  • Loading branch information
kwerber committed May 16, 2022
1 parent 2757289 commit 441c6cd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
*/
public class EvalPlan {

private final String groupPrefix;
private final String group;
private final Baseline baseline;
private final int threshold;
Expand All @@ -21,6 +22,7 @@ public EvalPlan(String groupPrefix, Baseline base, int threshold, WordSimMeasure
}

public EvalPlan(String groupPrefix, Baseline base, int threshold, List<WordSimMeasure> measures) {
this.groupPrefix = groupPrefix;
this.group = groupPrefix + "_b" + base.getId();
this.baseline = base;
this.threshold = threshold;
Expand All @@ -36,6 +38,8 @@ public String getGroup() {
return group;
}

public String getGroupPrefix() { return groupPrefix; }

public Baseline getBaseline() {
return baseline;
}
Expand Down

0 comments on commit 441c6cd

Please sign in to comment.