AI - Module 1&2
AI - Module 1&2
support@intellipaat.com
+91-7022374614
Tasks to be performed:
1. Define a use case of Deep Learning in your current domain (if fresher, pick
any of your favorite) and propose a solution through DL.
2. A steel manufacturing plant is spending many hours in manual inspection
of their steel product(flat 2*2 ft steel plates) The inspection is a crucial part
of their delivery cycle.
a. Design and detail out a proposal to automate the process using DL
b. Please, explain what will be your major questions to client regarding
the process & data
3. A particular linear process has an input (x=5) and output (y=10)
a. Create a model using numpy to solve for “y” and record your best
error.
b. Repeat the above experiment with different hyper parameters like
Learning Rate & activation function.
c. Record the various hyperparameters used in experiment and submit
the table with data (x | y | y_pred | error (RMSE) | LR | activation
used).
4. Define the role of Learning Rate in Neural Networks and why they are
important using an experiment?
a. Use an experiment like above one with LR and one without LR.
5. Explain the 3 step life cycle of Deep Learning projects with an example use
case.
6. Mathematically, derive the complete process of a single perceptron from
an input to output and perform the below task:
a. Explain the above in 3 phases of Feed Forward, Error Calculation,
Back Propagation mathematically.
b. Explain the role and importance of each and every parameter other
than x and y.
7. What are activation functions and why are they required in NN?
a. Create python functions for sigmoid, tanh, relu & softmax.