DeepLearning Practical File k - nishant
DeepLearning Practical File k - nishant
INDEX
S. No. Practicals Page No. Sign
Write a program for creating a perceptron.
1) 03
2) 04
Write a program to implement multi-layer perceptron using TensorFlow.
Apply multi-layer perceptron (MLP) on the Iris dataset.
Code:
#output:
Q3.
(a) Write a program to implement a Convolution Neural Network (CNN) in Keras.
Perform predictions using the trained Convolution Neural Network (CNN).
Code:
# (a) CNN implementation and prediction
#output:
Code:
# (b) CIFAR-10 Image Classifier
#output:
Q4. (a) Write a program to perform face detection using CNN.
(b) Write a program to demonstrate hyperparameter tuning in CNN.
(c)Predicting Bike-Sharing Patterns – Build and train neural networks from scratch to predict the
number of bike share users on a given day.
Code:
Code:
#output:
Q7. (a) Write a program to implement a Recurrent Neural Network
(b) Write a program to implement LSTM and perform time series analysis using LSTM.
Code:
# a)Simple RNN
#output:
Code:
# b)Write a program to implement LSTM and perform time series analysis using LSTM.
#output:
Q8. (a) Write a program to perform object detection using Deep Learning
(b) Dog-Breed Classifier – Design and train a convolutional neural network to analyze
images of dogs and correctly identify their breeds. Use transfer learning and well-known
architectures to improve this model.
Code:
Code:
# b) Dog breed classifier
#output:
Q9. (a) Write a program to demonstrate different activation functions.
(b) Write a program in TensorFlow to demonstrate different Loss functions.
Code:
# (a) Write a program to demonstrate different activation functions.
#output:
Code:
# b) Demonstrate Different Loss Functions in TensorFlow
#output:
Q10. Write a program to build an Artificial Neural Network by implementing the Back
propagation algorithm and test the same using appropriate data sets.
Code:
#output: