SlideShare a Scribd company logo
1 of 65
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 BPIT ML Campaign.pptx

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 BPIT ML Campaign.pptx (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

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...Call Girls in Nagpur High Profile
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 

Recently uploaded (20)

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 

GDSC BPIT ML Campaign.pptx