Keras network can never classify the last class
问题 I have been working on my project Deep Learning Language Detection which is a network with these layers to recognise from 16 programming languages: And this is the code to produce the network: # Setting up the model graph_in = Input(shape=(sequence_length, number_of_quantised_characters)) convs = [] for i in range(0, len(filter_sizes)): conv = Conv1D(filters=num_filters, kernel_size=filter_sizes[i], padding='valid', activation='relu', strides=1)(graph_in) pool = MaxPooling1D(pool_size=pooling