Orientation
An Interactive Session
Prof. Harish Guruprasad
Prof. Arun Rajkumar
Prof. Prashanth LA
Machine learning,
statistical learning theory and
optimisation.
Machine learning,
statistical learning theory with applications to education and healthcare
Reinforcement learning, simulation optimization and
multi-armed bandits
Anamika
Abhinandan
Arun
Amrutha
Jimmi
Vishal
import numpy as np
import tensorflow as tf
import keras
import torch.nn as nn
import nltk
import sklearn
import pandas as pd
Linear Algebra, Calculus, Optimisation
Probability
&
Statistics
\(\frac{d y(x_0)}{dx}\)
Two Quizzes (50%)
Final Exam (50%)
watching
Image Credits:
https://flaticon.com
https://www.flaticon.com/authors/photo3idea-studio
https://www.freepik.com
https://www.flaticon.com/authors/smashicons
https://giphy.com
https://www.flaticon.com/authors/srip
https://www.flaticon.com/authors/flat-icons
https://www.flaticon.com/Nikita Golubev
https://mathworks.com
https://scikit-learn.org/stable/auto_examples/applications/plot_face_recognition.html
https://forbes.com
&
Orientation
An Interactive Session
Ashish (Vijay) Tendulkar
Machine Learning Specialist (Google)
Machine learning,
and Deep learning with applications to Natural Language Processing
Anamika
Abhinandan
Arun
Amrutha
Jimmi
Swarnim
Debajyoti
Nitin
Anamika
Arun
Amrutha
Karthik
Swarnim
Debajyoti
Nitin
Jimmi
Sepal
Petal
Sepal
Petal
Sepal
Petal
Sepal
Petal
def loss(X, w, y):
y_hat = predict(X, w)
samp_loss = np.maximum(-1*y_hat*y, np.zeros(y.shape[0])))
J = np.sum(samp_loss)
return J
Two Quizzes
Final Exam
Types of Questions:
1. MCQ
2. MSQ
3. NAT
4.Programming
Two Proctored Programming Exam
Make a hot & sweet drink:
How do you select the required ingredients? How do you mix? Does order of mixing matter? How do you assess the quality? ...
All about ingredients.
Essential and inevitable!
Everything is trivial in cook books
Reading a cook book
from sklearn import datasets
from sklearn import pipeline
from sklearn import linear_model
from sklearn import metrics