SET -1
Implement a 2 node neural network model using keras
SET -2
Implement different activation functions to train Neural Network(Binary Step Activation
Function, Linear Activation Function and Non Linear Activation Function).
SET -3
i) Implement AND/OR Gate with 2-bit Binary Inputs using single layer perceptron. ii)
Implement NOT Gate with 1-bit Binary Inputs using single layer perceptron.
SET -4
Implement XOR Problem using Multi-Layered Perceptron
SET -5
Implement a simple three layer neural network build in Tensor flow(MNIST Dataset).
Data sizes of the tuples are: x_train: (60,000 x 28 x 28), y_train: (60,000), x_test: (10,000 x
28 x 28), y_test: (10,000)
1.Write a function, how data can be loaded by running the program
2.Write a function, how exact the training data in batches of samples.
3.nitialize the values to python optimization variables(Epoches,Batch_size)
4.Write a code, to Normalize the input images by dividing the 255.0
5.Declare the weights connecting the input to the hidden layer and the weights connecting to
the hidden layer to the output layer.
6.Write a code to create the computations that occur within the nodes of a network. Define a
loss function, apply cross_entropy loss function to the softmax activation output and return
cross_entropy.
7. Write a code to define the Adam Optimizer
8. After creating appropriate functions, variables and optimizers,
Write down the code to define the overall training loop and Evaluate the accuracy of the
model on the test set.
SET -6
Implement House price prediction from kaggle dataset by using Multi Layered Perceptron.
SET -7
Implement different optimizers on a simple neural network using Keras(Mnist dataset)
SET -8
Implement various pooling operations in Convolution Neural Network
SET -9
Develop a 1D Convolutional Neural Network for the human activity recognition dataset.
SET -10
Implement GRU Model from Scratch
SET -11
Implement a Sentimental Analysis as a text classification task for large movie review
dataset.