I am using almost similar code that I found here...
https://towardsdatascience.com/classify-butterfly-images-with-deep-learning-in-keras-b3101fe0f98
The example is related to binary classification. The data that I am testing with is calling for multi-class classification. I guess I need to change activation and loss function. Can I use the same code found here if I have more than 2 types?
https://github.com/bertcarremans/Vlindervinder/blob/master/model/CNN.ipynb
update: I have one more question. Is augmentation necessary if I have enough data?