Skip to main content

How to train a neural network for multiclass classification?

 How to train a neural network for multiclass classification? 

In previous class  we learnt about to Binary Classification in neural network to change it to multiclass classification we do S1
S1="In neural network we have to just change the last neuron units to no.classes"

Comments

Popular posts from this blog

CNN(Convolution Neural Network)

 CNN(Convolution Neural Network) CNN is used to classify images CNN is most effective for 2D data CNN has three layers-: 1> Convolution layer for extracting feature 2> Max Pooling layer for reducing dimension 3> Flatten for Convert 2D to 1D because we have to pass to ANN prediction 4> Next ANN Network

Perceptron

 Perceptron is a general thing used in deep learning .You know what is neuron in brain Perceptron Layers 1. Input-In Input we provide Input to our model 2. Calculation-we calculate weight and biases for out Perceptron 3.Output-(sigma of wixi)+b Perceptron Architecture