Output interpretation
Closed this issue · 3 comments
Hello Gathierry,
I am a bit puzzled on how to interpet the output of the evaluation. In line 97-98 of main.py in the eval_once function, I get negative results as my output. It does give me a proper ROC_AUC value. How do I translate this to boolean values?
Imagine I want to add another image of a hazelnut and see if it has an anomaly or not, how would I interpret the results of the model?
Best,
Roelof
Hi @RoelofKuipers , as the output of fastflow is the likelihood (greater value = more normal), I convert it to negative to represent the anomaly score, that's why the output is negative.
Line 151 in d275b79
To translate it to boolean values, you need to set a threshold
.
then outputs > threshold
is a boolean array in which True -> abnormal, False -> normal
Setting a threshold is kind of tricky, it is usually determined based on the ROC curve. And I believe you'll need different threshold values for different datasets.
Thank you @gathierry , makes total sense. I simply got confused with the -prob as a likelihood for a while. But this doesn't matter at all of course.