I think the reason is because of the config for the model. Can anyone give me a hint on what the config should be. (I have already try combinations of SGD, adam and mse, categorical_crossentropy and some other config).
I tried RMSprop and It was a success! I got IOU over 85% and that is amazing. I wonder how to get the correct config??? is there any approriate way instead of error and trial ??
Assuming all the rest is fine (as long as you follow the instructions properly on the assignment) when it comes to compiling the model intentionally is left for you to decide which optimizer and loss to use. You need to tweek the parameters but there should be guidances on the videos and labs as well. Think of the outputs the model will classify and experiment with the optimizer.
Suppose you have a chest X-ray that has multiple diseases. You would want to predict all the diseases that are present. So, even though you have multiple classes, you would use sigmoid so that you can tell the prediction of each class.
Thank you very much for your answer, Yes, it makes sense and answers my question… still I was having bad results with sigmoid, so changed it to softmax - categorical_crossentropy and everything was much better (with Adam as optimizer)