Open ale2sia opened 11 months ago
Hi @ale2sia,
out_channels
, in a multi-class segmentation task, you only need to set the num_classes
value. softmax
depend on the loss function, e.g, https://github.com/open-mmlab/mmsegmentation/blob/main/mmseg/models/losses/cross_entropy_loss.py#L45. In testing, we use argmax
method to classify the class of a pixel. https://github.com/open-mmlab/mmsegmentation/blob/main/mmseg/models/segmentors/base.py#L188
Hi, I'm a beginner student in neural network design. For a university assignment, I need to program an artificial intelligence network to segment cellular images, identifying cells, borders, and background. I have some questions because, being inexperienced, I didn't quite understand from the MMSegmentation documentation.
Please be patient; this is my very first experience in programming. Also, I'm not cheating! Our professor told us to use all the resources available to us to better understand things. Thank you!
PS. I am using a type='PSPHead' as decode_head, the auxiliary_head is a type='FCNHead' and the backbone type='ResNetV1c'