Why does my CNN not predict labels as expected?
问题 I am new to the concept of Similarity Learning. I am currently doing a face recognition model using Siamese Neural Network for the Labelled Faces in the Wild Dataset. Code for Siamese Network Model (Consider each code snippets to be a cell in Colab): from keras.applications.inception_v3 import InceptionV3 from keras.applications.mobilenet_v2 import MobileNetV2 from keras.models import Model from keras.layers import Input,Flatten def return_inception_model(): input_vector=Input((224,224,3))