"best practice for combining performance vectors"
niccay
New Altair Community Member
Hey,
I got several PerformanceVectors computed over non-overlapping subsets of an exampleset. Now I'd like to combine these PerformanceVectors in order to get just one to analyse my results (way) easier.
Is there a straight-forward way to do so? Well, I could figure out some "dirty" ways but I guess it's better to do it "right" from the beginning.
Thanks for your help
I got several PerformanceVectors computed over non-overlapping subsets of an exampleset. Now I'd like to combine these PerformanceVectors in order to get just one to analyse my results (way) easier.
Is there a straight-forward way to do so? Well, I could figure out some "dirty" ways but I guess it's better to do it "right" from the beginning.
Thanks for your help
Tagged:
0
Answers
-
If someone happens to have the same problem, I guess got the way you're meant to combining performance vectors:
(but AUC doesn't seem to work)
for(int averageCriterion = 0; averageCriterion < measuredPerformance.getSize(); averageCriterion++) {
average.getAveragable(averageCriterion).buildAverage(measuredPerformance.getAveragable(averageCriterion));
}
Salut0