You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solution: Don't forget to delete existing models and re-run the model generation command!
The ones you create earlier are never overwriting even when you give them the same name.
Overfitting is when the network learns perfectly on the training data, but process poorly on validation data. This can happen when you have not enough training data for instance.
You can check classification metrics of your network on training and validation datasets to see if this is related to overfitting or not (I cannot tell from the provided illustration if it is the case).
Generally, the more training samples you have, the best is the result (if your have quality data). The tutorial in the book is an insight to semantic segmentation, and in real life you will definitely seek for large amount of training data to train the best model.
Maybe the model has mapped road as "buildings" because it hasn't seen enough training examples containing roads?
Hello!
I'm stuck with the image segmentation.
I've preprocessed the images, then extracted patches like this:
The CNN model training runs fine
For inference, I give a normalized image as as input layer. The final result I get is the following:
The way I understand it, the U-NET model is supposed to delete those artifacts in this piece of code?
Or should it be done differently? Thank you!
The text was updated successfully, but these errors were encountered: