IanTaehoonYoo / semantic-segmentation-pytorch

Pytorch implementation of FCN, UNet, PSPNet, and various encoder models.
MIT License
86 stars 19 forks source link

what is train_epoch_batch_.png represents? #14

Closed zhou-rui1 closed 3 years ago

zhou-rui1 commented 3 years ago

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....

IanTaehoonYoo commented 3 years ago

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.

zhou-rui1 commented 3 years ago

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

IanTaehoonYoo commented 3 years ago

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.