I'm trying to build a model to detect multiple attributes in an image.
I'm using the pre-trained inception V3 model. I understand that we have to change the final softmax layer to sigmoid.
I'm loading the model as follows:
with slim.arg_scope(inception.inception_v3_arg_scope()):
logits, _ = inception.inception_v3(images, num_classes=numClass, is_training=True)
Now how do I change the softmax layer to sigmoid?