MrGiovanni / UNetPlusPlus

[IEEE TMI] Official Implementation for UNet++
Other
2.26k stars 538 forks source link

Where is helper_functions ? #18

Closed BingxianChen closed 5 years ago

BingxianChen commented 5 years ago

import helper_functions as H ... IoU = H.compute_iou(y_test, p_test) print(">> Testing dataset mIoU = {:.2f}%".format(np.mean(IoU)))

MrGiovanni commented 5 years ago

Thanks for letting me know the missing file. I have updated the script "BRATS2013_application.py" by removing the line "import helper_functions as H" because the function "compute_iou" has been defined in "model_logic.py". You may load it directly through "from model_logic import *".

Best regards, Zongwei