huiqu18 / FullNet-varCE

Pytorch implementation of FullNet-varCE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Request for help

xiongxuechun opened this issue · comments

When I was running test.py, there was such a result, what is the problem?
bug
bug2

@xiongxuechun The first problem occurred because pred and target had different shapes, please check the input.
The second problem was caused by count=0, i.e., no true positives in the results. This can be fixed by dice /= (count + 1e-8)