Skip to content

Commit

Permalink
Use the same weighted score mean of the DIE Task
Browse files Browse the repository at this point in the history
  • Loading branch information
hauck-jvsh committed Feb 25, 2025
1 parent c1673aa commit 4072a14
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,11 @@ public void addClass(String classname,double val) {
}

public double getClassProb(String classname) {
double resp = 0;
for (Double val : classes.get(classname)) {
if (val > resp)
resp = val;
}
return resp;
/*
* double resp = 0; for (Double val : classes.get(classname)) { if (val > resp)
* resp = val; } return resp;
*/
return DIETask.videoScore(classes.get(classname));

}
}
Expand Down

0 comments on commit 4072a14

Please sign in to comment.