CoolFace
Modelpublic

Yuecong682/unetpp-cell-nuclei

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
Model Card

UNet++ on Cell Nuclei Dataset (DSB 2018)

Results (5-fold Cross Validation)

FoldDiceIoU
10.89060.8451
20.90710.8480
30.90490.8519
40.89840.8478
50.90300.8441

Mean IoU: 84.74% Mean Dice: 90.08%

Usage

python
from tensorflow.keras.models import load_model
import helper_functions
model = load_model('best_model_fold1.h5', custom_objects={
    'bce_dice_loss': helper_functions.bce_dice_loss,
    'dice_coef': helper_functions.dice_coef
})