IanTaehoonYoo / semantic-segmentation-pytorch

Pytorch implementation of FCN, UNet, PSPNet, and various encoder models.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to make the network work well with num_class=2

zhou-rui1 opened this issue · comments

Hi, originally it work well with num_class=256...

but when I edited img = img.astype('float32') / 255.0, seg = seg.astype('float32') / 255.0 in segmentation_dataset.py, and target = target//255 in trainer.py to adapt the train to num_class=2only(for binary seg),

then the network can not train well and predict nothing (black), did I do something wrong?
image

you are so kind and sorry to bother you again...