How to get class prediction for new entry value in neural networks?
Advertisements I am new to Nerual Networks model building !! I am doing an multi-class text classification using neural networks. Steps I have done : 1.Data Cleaning 2.Keras – Text Vectorization for Input Data 3.Dummie values for Label data I have build the model like this: model = tf.keras.Sequential([ layers.Embedding(max_features + 1, embedding_dim), layers.Dropout(0.2), layers.GlobalAveragePooling1D(),… Read More How to get class prediction for new entry value in neural networks?