SegmentationBLWX / sssegmentation

SSSegmentation: An Open Source Supervised Semantic Segmentation Toolbox Based on PyTorch.
https://sssegmentation.readthedocs.io/en/latest/
Apache License 2.0
775 stars 107 forks source link

What does the 'fine-tuned' mean? #14

Closed liuzhidemaomao closed 2 years ago

liuzhidemaomao commented 2 years ago

In ISNet, the models are fine-tuned for 160K iterations on ADE20K and LIP datasets. So do you pretrained the models on other datasets?

CharlesPikachu commented 2 years ago

It means that the backbone networks are pretrained on ImageNet 1k/22k, which is a common practice in semantic segmentation.

liuzhidemaomao commented 2 years ago

It means that the backbone networks are pretrained on ImageNet 1k/22k, which is a common practice in semantic segmentation.

Thank you for your reply.