SlideShare a Scribd company logo
1 of 65
Download to read offline
Introduction to AI &
Machine Learning
There are two main approaches used
in AI programming
Rules-based Approach Machine Learning Approach
Rule Based Approach
Rule-based AI is a type of AI that uses rules to solve a problem.
Human experts typically write rules but are not learned from data.
Machine Learning Approach
Machine Learning gives computers the capability to learn from data without being
explicitly programmed for it.
It gives a computer ability to learn, just like a human.
Each approach has its applications,
advantages and disadvantages
Next slides will show you some examples on where each approach is used
Rules-based approach
Machine Learning
Alphabetising a list of song titles
Rules-based
Which Approach to Use?
Rules-based approach
Machine Learning
Ranking Web Search Results
Rules-based
Machine Learning
Which Approach to Use?
Rules-based
Machine Learning
Predicting Housing Prices
based on Location
Machine Learning
Which Approach to Use?
Processing online payments
Rules-based approach
Machine Learning
Rules-based
Which Approach to Use?
Classifying an object in a photo
Rules-based
Machine Learning
Machine Learning
Which Approach to Use?
Each has its benefits
Rule-based Approach Machine Learning
– Rules are defined
– Improvements come from
algorithms and network
– Learns patterns from data
– Improvements may from
additional data
Recap
Collect
Data
Train and
Test Model
Define
Objective
Predict and
Evaluate
Focus on
User
Machine Learning Process
Artificial Intelligence
Machine Learning
Deep Learning
Big Data Algorithms
Technology
ML
Machine Learning
Techniques
MAMMAL
WILDLIFE
LION
Classification
In Classification, a
program learns
from the given
dataset or
observations and
then classifies
new observation
into a number of
classes or groups.
Regression
Regression is an ML
algorithm that is
used to predict
continuous
outcomes after
training on certain
data.
Clustering
is the task of dividing
the population or
data points into a
number of groups.
Sequence Prediction
is predicting the next
symbol(s) based on the
previously observed
sequence of symbols
You can see Sequence
Prediction in action by using
Glide type, Handwriting
recognition or Translation task on
the Google’s Gboard app.
+ =
Style Transfer
Style transfer is a computer vision technique that takes two images—a content image and a
style reference image—and blends them together so that the resulting output image retains
the core elements of the content image, but appears to be “painted” in the style of the style
reference image.
Applications of each technique of
Machine Learning
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Classification
Labeling email as spam
or not-spam
Type of Machine Learning?
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Identifying trends amongst a
group of people who have
bought a new music release
Clustering
Type of Machine Learning?
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Recommending next word in the
android SMS app based on the
words typed so far
Sequence Prediction
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Determining workout activity
based on phone movement.
Classification
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
A bot that reads the news in
the voices of famous actors
Style Transfer
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Identifying famous landmarks
in a photo
Classification
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Suggesting spelling corrections
Clustering
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Predicting the quality score for
an advertisement
Regression
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Estimating arrival time based
on time of day and traffic.
Regression
Classification
Clustering
Regression
Sequence Prediction
Style Transfer
Type of Machine Learning?
Translating between two
languages
Style Transfer
DL is machine learning using neural networks.
Glimpse of a basic neural network
Unlike former ML algorithms,
Neural Nets can handle image, video, audio and
text.
TensorFlow is a deep learning framework developed by Google.
TensorFlow makes it possible to build large deep neural networks
without having to worry about all the mathematics behind it.
You can either use existing
models provided TensorFlow
Or build your own neural network
TensorFlow can accelerate your models using your GPU.
This is made possible using
Also, TensorFlow is highly scalable and can
utilize the full power of multi GPU systems.
⮚ This is one of most basic
introductory example for
TensorFlow.
⮚ We will use MNIST dataset
included in TensorFlow by default.
⮚ We are going to train a small
neural network for this task, just
like you have seen before.
Let’s try to recognize handwritten
digits using TensorFlow
Click to open Google Colab at
start training the network
7
Input Output
NN
MNIST Dataset
Recent examples of
Deep Learning
Computer
Vision
Image
Classificatio
n
Object
Detection
Image
Segmentatio
n
Object
Tracking
A Branch of Deep Learning
Autonomous
Vehicle
• Depth Estimation
• Pedestrian Detection
• Road Sign Identification
• Traffic Lights Detection
• Road Lane Detection
Real Life
Applications
• Social media apps use facial recognition to
detect and tag users
• Using computer vision, AR gear detect
objects in real world in order to determine
the locations on a device’s display to place a
virtual object
• Consumer devices use facial recognition to
authenticate the identities of their owners
• Law enforcement agencies also rely on facial
recognition technology to identify criminals
in video feeds
How It Works?
Data Labelling
Train and
Test the
Model
Output And
Improve Steps to Train the Model
Convolutional
Neural
Network
(MODEL)
Convolutional Neural Network
Advancements
⮚Few Shots Learning
⮚Image Captioning
⮚Super Resolution
⮚Action Recognition
⮚3D object Detection
IMAGE CAPTIONING MODEL
A Dog Sitting
on the Beach
3D Object
Detection
Getting
Started
• Basic:
- OpenCV (you can use either
python or C++)
- Image Processing
• Intermediate:
- TensorFlow
- Basic CNN Model for
Classification(Cats vs Dogs)
Natural Language Processing
Analysis and synthesis of natural
language and speech.
To make machines understand and draw
out meaning and relationship
between natural language
• Chatbots
• Language Translator
• Sentiment Analysis
• Email Classification and Filtering
Language Translator
who are you
आप कौन हैं
•An organization might use sentiment
analysis to classify reviews into
different categories when the amount
of reviews is large making it inefficient
to manually classify them.
Recurrent Neural
Networks
Recurrent Neural Networks enable
you to model time-dependent and
sequential data problems, such as
stock market prediction, machine
translation, and text generation
Why use RNN: When the
sequence of the data is important
and depicts a meaning then RNN is
advantageous whereas machine
learning algorithms like SVM fails
to make use of and understand
this sequencial meaning.
Recurrent
Neural
Network
More NLP Networks
Long short-
term memory
(LSTM)
Gated
Recurrent
Unit
Networks
Bidirectional
LSTM
Word2Vec
It is used to create a distributed representation of words into numerical vectors
KING
-
MAN
+
WOMAN
=
QUEEN
ChatGPT
Generative Pretrained Transformer
GPT-3 and GPT-4 are state-of-the-art language processing AI models
developed by OpenAI
They are capable of generating human-like text and have a wide
range of applications, including language translation, language
modelling, and generating text
ML Resources
Courses and
Certifications
⮚ You can know more about TensorFlow at tensorflow.org
⮚ For beginners, Google has set-up a free crash course named
Machine Learning Crash Course with TensorFlow APIs at
https://developers.google.com/machine-learning/crash-course
⮚ offers a TensorFlow Developer Professional
Certificate for those who want to excel at using this library.
⮚ And you can always go search on YouTube for free
TensorFlow courses. Check out freecodecamp, they provides
good free courses on YouTube.
How to learn TensorFlow?
Free Courses
Course Platform
Machine Learning for Everybody – Full Course YouTube
Machine Learning Specialization by Andrew Ng
(Audited)
Coursera
Learn the Basics of Machine Learning
Simplilearn
Paid
Certificate
Courses
Course Platform
Machine Learning Specialization by Andrew Ng
(with Certificate)
Coursera
Machine Learning with Python by IBM Coursera
Deep Learning Specialization by Andrew Ng
Coursera
Machine Learning A-Z : AI, Python & R + ChatGPT
Bonus [2023] Udemy
Kaggle is a extremely popular site among Machine Learning
Enthusiasts and Data Scientists all over the world.
It hosts many live ML and Data Science competitions
each year. Many prominent programmers take part in
these competitions.
It has a huge repository of datasets which can be used
by anyone for their projects.
Thank you!
If any of you have questions, please feel free to ask

More Related Content

Similar to GDSC Machine Learning Session Presentation

Artificial Intelligence Question Bank
Artificial Intelligence Question BankArtificial Intelligence Question Bank
Artificial Intelligence Question BankSpardhavijetha2DrKMs
 
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...Simplilearn
 
Artificial intelligence Overview by Ramya Mopidevi
Artificial intelligence Overview by Ramya MopideviArtificial intelligence Overview by Ramya Mopidevi
Artificial intelligence Overview by Ramya MopideviRamya Mopidevi
 
The implementation of Big Data and AI on Digital Marketing
The implementation of Big Data and AI on Digital MarketingThe implementation of Big Data and AI on Digital Marketing
The implementation of Big Data and AI on Digital MarketingMohamed Hanafy
 
What are the Unique Challenges and Opportunities in Systems for ML?
What are the Unique Challenges and Opportunities in Systems for ML?What are the Unique Challenges and Opportunities in Systems for ML?
What are the Unique Challenges and Opportunities in Systems for ML?Matei Zaharia
 
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...Amazon Web Services
 
Machine Learning for Designers - DX Meetup Basel
Machine Learning for Designers - DX Meetup BaselMachine Learning for Designers - DX Meetup Basel
Machine Learning for Designers - DX Meetup BaselMemi Beltrame
 
5 Algorithms Every Web Developer Can Use and Understand
5 Algorithms Every Web Developer Can Use and Understand5 Algorithms Every Web Developer Can Use and Understand
5 Algorithms Every Web Developer Can Use and UnderstandMatt Kiser
 
Machine learning
Machine learningMachine learning
Machine learningeonx_32
 
Machine Learning Fundamentals.docx
Machine Learning Fundamentals.docxMachine Learning Fundamentals.docx
Machine Learning Fundamentals.docxHaritvKrishnagiri
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Vidyut Singhania
 
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位eLearning Consortium 電子學習聯盟
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial IntelligenceEnes Bolfidan
 

Similar to GDSC Machine Learning Session Presentation (20)

Artificial Intelligence Question Bank
Artificial Intelligence Question BankArtificial Intelligence Question Bank
Artificial Intelligence Question Bank
 
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
 
Pattern recognition
Pattern recognitionPattern recognition
Pattern recognition
 
AI NOTES.docx
AI NOTES.docxAI NOTES.docx
AI NOTES.docx
 
Internshipppt.pptx
Internshipppt.pptxInternshipppt.pptx
Internshipppt.pptx
 
Artificial intelligence Overview by Ramya Mopidevi
Artificial intelligence Overview by Ramya MopideviArtificial intelligence Overview by Ramya Mopidevi
Artificial intelligence Overview by Ramya Mopidevi
 
The implementation of Big Data and AI on Digital Marketing
The implementation of Big Data and AI on Digital MarketingThe implementation of Big Data and AI on Digital Marketing
The implementation of Big Data and AI on Digital Marketing
 
What are the Unique Challenges and Opportunities in Systems for ML?
What are the Unique Challenges and Opportunities in Systems for ML?What are the Unique Challenges and Opportunities in Systems for ML?
What are the Unique Challenges and Opportunities in Systems for ML?
 
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...
AWS Summit Singapore 2019 | Building Business Outcomes with Machine Learning ...
 
Machine Learning for Designers - DX Meetup Basel
Machine Learning for Designers - DX Meetup BaselMachine Learning for Designers - DX Meetup Basel
Machine Learning for Designers - DX Meetup Basel
 
5 Algorithms Every Web Developer Can Use and Understand
5 Algorithms Every Web Developer Can Use and Understand5 Algorithms Every Web Developer Can Use and Understand
5 Algorithms Every Web Developer Can Use and Understand
 
Sais svcc
Sais svccSais svcc
Sais svcc
 
Machine learning
Machine learningMachine learning
Machine learning
 
Machine Learning Fundamentals.docx
Machine Learning Fundamentals.docxMachine Learning Fundamentals.docx
Machine Learning Fundamentals.docx
 
TechDayPakistan-Slides RAG with Cosmos DB.pptx
TechDayPakistan-Slides RAG with Cosmos DB.pptxTechDayPakistan-Slides RAG with Cosmos DB.pptx
TechDayPakistan-Slides RAG with Cosmos DB.pptx
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition
 
Eckovation Machine Learning
Eckovation Machine LearningEckovation Machine Learning
Eckovation Machine Learning
 
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位
AI生成工具的新衝擊 - MS Bing & Google Bard 能否挑戰ChatGPT-4領導地位
 
machine learning.pptx
machine learning.pptxmachine learning.pptx
machine learning.pptx
 
Artificial Intelligence
Artificial IntelligenceArtificial Intelligence
Artificial Intelligence
 

Recently uploaded

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAbdelrhman abooda
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceSapana Sha
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一F sss
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxFurkanTasci3
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home ServiceSapana Sha
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts ServiceSapana Sha
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 

Recently uploaded (20)

Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
 
Call Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts ServiceCall Girls In Dwarka 9654467111 Escorts Service
Call Girls In Dwarka 9654467111 Escorts Service
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
办理学位证中佛罗里达大学毕业证,UCF成绩单原版一比一
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptx
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service9654467111 Call Girls In Munirka Hotel And Home Service
9654467111 Call Girls In Munirka Hotel And Home Service
 
Call Girls In Mahipalpur O9654467111 Escorts Service
Call Girls In Mahipalpur O9654467111  Escorts ServiceCall Girls In Mahipalpur O9654467111  Escorts Service
Call Girls In Mahipalpur O9654467111 Escorts Service
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 

GDSC Machine Learning Session Presentation