Open alishan2040 opened 1 year ago
Hi @lukasruff ,
Could you please explain how can I map the predicted scores into predicted labels to compute precision, recall and f1 score. Line 147 from
src/optim/deepSVDD_trainer.py
_, labels, scores = zip(*idx_label_score)
For soft-boundary, I found in the paper that +ve values are considered as outliers while negative values (< 0) are treated are normal (inliers). Does this apply to theone-class
objective as well? Thanks,
I also want to know, had you solved it?
Hi @lukasruff ,
Could you please explain how can I map the predicted scores into predicted labels to compute precision, recall and f1 score. Line 147 from
src/optim/deepSVDD_trainer.py
_, labels, scores = zip(*idx_label_score)
For soft-boundary, I found in the paper that +ve values are considered as outliers while negative values (< 0) are treated are normal (inliers). Does this apply to theone-class
objective as well? Thanks,