Combining Two CNN's
问题 I Want to Combine Two CNN Into Just One In Keras, What I Mean Is that I Want The Neural Network To Take Two Images And Process Each One in Separate CNN, and Then Concatenate Them Together Into The Flattening Layer and Use Fully Connected Layer to Do The Last Work, Here What I Did: # Start With First Branch ############################################################ branch_one = Sequential() # Adding The Convolution branch_one.add(Conv2D(32, (3,3),input_shape = (64,64,3) , activation = 'relu'