-
Hi, I am trying to add additional metrics to the EnsembleEvaluator used in the tutorial for cross validation. I was working with the BraTS dataset and need to add the tumor classes separately in addition to average dice. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Hi @bip5 , If you want to compute the metrics for every class, there are 2 methods: 1. Set the Thanks. |
Beta Was this translation helpful? Give feedback.
-
Hi @Nic-Ma , Thank you for your help. I now have the metrics as I want it. |
Beta Was this translation helpful? Give feedback.
Hi @bip5 ,
If you want to compute the metrics for every class, there are 2 methods: 1. Set the
reduction
arg of metric to compute average for every channel separately. 2. Split theprediction
bySplitChanneld
transform to save every class in a separate key and compute.@yiheng-wang-nv May help share more concrete examples if you still have some issues.
Thanks.