IanTaehoonYoo / semantic-segmentation-pytorch

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

what is train_epoch_batch_.png represents?

zhou-rui1 opened this issue · comments

the file in the training process such as : train_epoch_8_batch_0.png contains three lines,the third one is the input image, then which is the difference between the first and the second line?
can you explain it a little for me, I am confusing and cannot find any reference....

Hi zhou-rui1,

"epoch_8" means that the train's epoch is 9th. "batch_0" is the first batch.
It's a count training the model.

Thanks a lot.
But what I mean is the .png for the training process, it presents three lines of images each epoch( batch=8, 8 images each line),what's the difference between the first and second lines images? such as this one:
https://drive.google.com/file/d/107de7m3rBEmhB0ThX4lNuguW6IpwnCwK/view?usp=sharing

Oh, I could understand when I saw your image.
The first line images are predicted images and output images.
The second line images are ground truth images and labeled images.