SlideShare a Scribd company logo
1 of 149
Download to read offline
ML
First semester 2021
By Amir EL-Ghamry
Classification
Outline
¨ Classification: Basic Concepts
¨ Decision Tree Induction
¨ Prediction using classification model
¨ Model Evaluation and Selection
¨ Summary
2
Supervised vs. Unsupervised Learning
¨ Supervised learning
(classification)
The class labels and the number of
classes of training data is known.
New data is classified based on
the training set.
¨ Unsupervised learning
(clustering)
The class labels of training
data is unknown.
Given a set of measurements,
observations, etc.… with the aim of
establishing the existence of
classes or clusters in the data.
Learning
Supervised Learning Unsupervised Learning
Example: Supervised vs. Unsupervised
Class labels √
Number of classes√
Class labels x
Number of classes√ or x
√ : Known in advance
X : Unknown in advance
4
Prediction Problems: Classification vs. Regression
¨ Classification and Regression are two major types of prediction problems.
¨ Classification:
Predicts categorical class labels (discrete or nominal).
Classifies data (constructs a model) based on the training set and the values (class
labels) in a classifying attribute and uses it in classifying new data.
¨ Regression:
Models continuous-valued functions, i.e., predicts unknown or missing values.
5
Activity: (classification or regression?)
For some loan application data à predict “safe” or “risky”.
For a marketing manager à predict how much a given customer will spend during a sale.
Typical applications of classification
¨ Credit/loan approval: if a customer should be approved or not.
¨ Medical diagnosis: if a tumor is malignant or benign.
¨ Fraud detection: if a transaction is fraudulent.
6
Classification Process: the 3 steps
7
Step 1: Model construction (Learning)
¨ Each tuple is assumed to belong to a predefined class, as determined by one of
the attributes, called the class label.
¨ The set of all tuples used for construction of the model is called training set.
¨ The model is represented in the following forms:
1. Classification rules, (IF-THEN statements).
2. Decision tree.
3. Mathematical formula.
Step 1: Model construction (Learning)
THE BASICS GENERAL APPROACH
Step 2: Model Evaluation
¨ Estimate the accuracy rate of the model based on a test set.
The known label of test sample is compared with the classified result from the model.
Accuracy rate is the percentage of test set samples that are correctly classified by the
model.
Test set is independent of training set, otherwise over-fitting will occur.
¨ If the accuracy is acceptable, use the model to classify data tuples whose
class labels are not known.
Model Evaluation
Step 3: Using the Model in Prediction
¨ The model is used to classify unseen objects (new data).
Give a class label to a new tuple.
Predict the value of an actual attribute (class label).
10
Predict if the new data is(safe) or risky)) ?
Decision Tree Induction
12
Decision Tree Basics
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree : Example
13
Decision Tree
13
Decision Tree
13
Decision Tree
13
Decision Tree
13
Decision Tree
13
How to build Decision Tree
13
Decision Tree : How it works
13
Decision Tree : How it works
13
Decision Tree : How it works
13
Decision Tree Induction: Algorithm
1. Tree is constructed in a top-down recursive divide-and-conquer manner.
2. At start, all the training examples are at the root; then it breaks down a
dataset into smaller and smaller subsets
3. Examples are partitioned recursively based on selected attributes.
n Attributes are categorical (if continuous-valued, they are discretized in
advance).
4. The final result is a tree with decision nodes and leaf nodes.
n Decision node is an attribute, and the
n leaf node represents classification or decision.
5. Test attributes are selected on the basis of a heuristic or statistical measure
(e.g., information gain).
13
Decision Tree Induction:
Example
14
Dataset
Decision Tree Induction:
Example
14
Decision Tree Induction:
Example
14
Decision Tree Induction: Algorithm
¨ Conditions for stopping partitioning:
1. All samples for a given node belong to the same class.
2. There are no remaining attributes for further partitioning – majority voting
is employed for classifying the leaf.
3. There are no samples left.
13
Decision Tree Induction: Algorithm Flowchart
13
Attribute Partitioning Scenario
15
¨ Partitioning is different depends on attribute types and tree type.
Binary Tree: 2-way split
Non-Binary Tree: Multi-way split
(a) If A is discrete-valued.
(b) If A is continuous-valued.
(c) If A is discrete-valued and a binary tree must be produced.
Attribute Partitioning Scenario
15
Attribute Selection Measures
¨ An attribute selection measure is a
heuristic for selecting the splitting criterion
that “best” separates a given data partition,
D, of class-labeled training tuples into
individual classes.
¨ Different measures:
Information Gain
Gain Ratio
Gini Index (Gini impurity)
16
The best splitting attribute is
Attribute Selection Measures
¨ The attribute selection measure provides a ranking for each attribute
describing the given training tuples.
¨ The attribute having the best score is chosen as the splitting attribute.
¨ Best score: depending on the measure, either the highest or lowest is chosen as
the best.
16
Attribute Selection Measures
16
Choosing Top Node in DT
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Build decision tree to predict new samples
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtobuilddecisiontree
13
Decision Tree:Howtoquantifyimpurity
13
Decision Tree:Howtoquantifyimpurity
13
Gini impurity to quantify impurity
13
Gini impurity of Love popcorn
13
Gini impurity of Love Popcorn
13
Gini impurity of Love Popcorn
13
Gini impurity of Love Popcorn Left Side
13
Gini impurity of Love Popcorn Left Side
13
Gini impurity of Love Popcorn Right Side
13
Gini impurity of Love Popcorn Right Side
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Popcorn : Total impurity
13
Gini impurity of Love Soda: Discrete data
13
Decision Tree:Howtobuilddecisiontree
13
Gini impurity of Love Soda
13
Gini impurity of Age: Continuous data
13
Gini impurity of Continuous attributes: Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of Age < 9.5
13
Gini impurity of Age: Calculating gini of all Age values
13
Gini impurity of Age: Calculating gini of all Age values
13
Gini impurity of Age: Calculating gini of all Age values
13
Gini impurity of Age: Calculating gini of all Age values
13
Gini impurity of Age: Calculating gini of all Age values
13
2
Don’t Forget: we want to choose the
root node of the decision Tree
13
13
Which attribute will be root node
Gini impurity of Love popcorn
13
Gini impurity of Love Soda
13
Gini impurity of Age
13
Gini impurity
13
Gini impurity
13
Gini impurity: Impure node need to split
13
13
Gini impurity: check Love popcorn VS age
13
Gini impurity of Love popcorn
13
Gini impurity of Love popcorn
13
Gini impurity of Love popcorn
13
Gini impurity of Love popcorn
13
Gini impurity of Age
13
Gini impurity of Age < 12.5
13
Gini impurity of Age < 12.5
13
Gini impurity of Choose Age
13
Gini impurity
13
Gini impurity
13
Gini impurity: Final Tree
13
Gini impurity: Assign output label to leaves
Prediction using Decision Tree
13
Predict using Decision Tree
13
Test Decision Tree
13
Test Decision Tree
13
Overfitting
13
Overfitting
13
Overfitting solution
13
Overfitting Solution : Thresholding
13
Overfitting
13
Cross Validation
13
Rule extraction from decision tree
13
Rule Extraction
¨ Rules can be extracted from a decision tree:
Rules are easier to understand than large trees.
the knowledge is represented in the form of IF-THEN rules.
n Rule antecedent/precondition vs. rule consequent.
¨ One rule is created for each path from the root to a leaf.
Each attribute-value pair along a path forms a conjunction: the leaf
holds the class prediction.
36
Rule Extraction: Example 1
36
¨ Example: Rule extraction from buys computer decision-tree:
age>40
age<=30
30<age<=40
Rule Extraction
q IF age = youth AND student = yes. THEN buys_computer = yes
q IF age = mid-aged THEN buys_computer = yes
IF age = senior AND credit_rating = excellent THEN buys_computer = yes
q IF age = senior AND credit_rating = fair THEN buys_computer = no
36
¨ Example: Rule extraction from buys computer decision-tree:
IF age = youth AND student = no. THEN buys_computer = no
Rule Extraction: Example 2
36
Rule Assessment
¨ A rule R can be assessed by its coverage and accuracy.
¨ Coverage (R): the percentage of tuples that are covered by the rule.
their attribute values hold true for the rule’s antecedent.
¨ Accuracy(R): percentage of covered rules that are correctly classified by R
37
𝑛𝑐𝑜𝑣𝑒𝑟𝑠= # of tuples covered by R
𝑛𝑐𝑜𝑟𝑟𝑒𝑐𝑡 = # of tuples correctly classified by R
Rule Assessment: Example
38
Rule Assessment: Example
38
Rule Assessment: Example
38
Exercise: IF age<=30 and student=no THEN buys_computer = no
Summary
¨ Classification: Supervised learning.
¨ Decision Tree Induction: Splitting Methods.
¨ Prediction using classification model.
53

More Related Content

What's hot

DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRY
DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRYDIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRY
DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRYAbubakr Asif
 
Big data Presentation
Big data PresentationBig data Presentation
Big data PresentationAswadmehar
 
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of Oxford
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of OxfordThe Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of Oxford
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of OxfordRasmus Kleis Nielsen
 
Chapter 6: Social Media Metrics and Analytics
Chapter 6: Social Media Metrics and AnalyticsChapter 6: Social Media Metrics and Analytics
Chapter 6: Social Media Metrics and AnalyticsZakey Peterson
 
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...Amazon Web Services
 
How to Become a Data Scientist
How to Become a Data ScientistHow to Become a Data Scientist
How to Become a Data Scientistryanorban
 
Social Media Monitoring: Presentation on Social Media Monitoring: Why and How
Social Media Monitoring: Presentation on Social Media Monitoring: Why and HowSocial Media Monitoring: Presentation on Social Media Monitoring: Why and How
Social Media Monitoring: Presentation on Social Media Monitoring: Why and HowAhmed Bouzid
 
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...Sungmin Kim
 
disadvantages of Social networking
 disadvantages of Social networking  disadvantages of Social networking
disadvantages of Social networking shrikant5
 
Data science presentation
Data science presentationData science presentation
Data science presentationMSDEVMTL
 

What's hot (18)

Identidad digital y reputación online
Identidad digital y reputación onlineIdentidad digital y reputación online
Identidad digital y reputación online
 
Big data and analytics
Big data and analyticsBig data and analytics
Big data and analytics
 
DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRY
DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRYDIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRY
DIGITAL TRANSFORMATION IN THE FOOD & BEVERAGE INDUSTRY
 
Big data Presentation
Big data PresentationBig data Presentation
Big data Presentation
 
Amazon QuickSight
Amazon QuickSightAmazon QuickSight
Amazon QuickSight
 
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of Oxford
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of OxfordThe Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of Oxford
The Power of Platforms - Inaugural lecture by Rasmus Kleis Nielsen, U of Oxford
 
Chapter 6: Social Media Metrics and Analytics
Chapter 6: Social Media Metrics and AnalyticsChapter 6: Social Media Metrics and Analytics
Chapter 6: Social Media Metrics and Analytics
 
Kef09
Kef09Kef09
Kef09
 
Machine Learning na globo-com
Machine Learning na globo-comMachine Learning na globo-com
Machine Learning na globo-com
 
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...
Big Data Analytics Architectural Patterns and Best Practices (ANT201-R1) - AW...
 
Big data
Big dataBig data
Big data
 
How to Become a Data Scientist
How to Become a Data ScientistHow to Become a Data Scientist
How to Become a Data Scientist
 
Social Media Monitoring: Presentation on Social Media Monitoring: Why and How
Social Media Monitoring: Presentation on Social Media Monitoring: Why and HowSocial Media Monitoring: Presentation on Social Media Monitoring: Why and How
Social Media Monitoring: Presentation on Social Media Monitoring: Why and How
 
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
AWS Analytics Immersion Day - Build BI System from Scratch (Day1, Day2 Full V...
 
κεφ 15 κοινωνικα δικτυα
κεφ 15   κοινωνικα δικτυακεφ 15   κοινωνικα δικτυα
κεφ 15 κοινωνικα δικτυα
 
Presentation on Big Data
Presentation on Big DataPresentation on Big Data
Presentation on Big Data
 
disadvantages of Social networking
 disadvantages of Social networking  disadvantages of Social networking
disadvantages of Social networking
 
Data science presentation
Data science presentationData science presentation
Data science presentation
 

Similar to ML_DT.pdf

Machine learning session6(decision trees random forrest)
Machine learning   session6(decision trees random forrest)Machine learning   session6(decision trees random forrest)
Machine learning session6(decision trees random forrest)Abhimanyu Dwivedi
 
Research trends in data warehousing and data mining
Research trends in data warehousing and data miningResearch trends in data warehousing and data mining
Research trends in data warehousing and data miningEr. Nawaraj Bhandari
 
Module 6: Ensemble Algorithms
Module 6:  Ensemble AlgorithmsModule 6:  Ensemble Algorithms
Module 6: Ensemble AlgorithmsSara Hooker
 
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Edureka!
 
Machine Learning Approach.pptx
Machine Learning Approach.pptxMachine Learning Approach.pptx
Machine Learning Approach.pptxCYPatrickKwee
 
Data Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptData Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptRvishnupriya2
 
Data Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptData Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptRvishnupriya2
 
Random forest and decision tree
Random forest and decision treeRandom forest and decision tree
Random forest and decision treeAAKANKSHA JAIN
 
Dataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptxDataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptxHimanshuSharma997566
 
Module 5: Decision Trees
Module 5: Decision TreesModule 5: Decision Trees
Module 5: Decision TreesSara Hooker
 
Machine Learning using biased data
Machine Learning using biased dataMachine Learning using biased data
Machine Learning using biased dataArnaud de Myttenaere
 
unit classification.pptx
unit  classification.pptxunit  classification.pptx
unit classification.pptxssuser908de6
 
Big Data Analytics - Unit 3.pptx
Big Data Analytics - Unit 3.pptxBig Data Analytics - Unit 3.pptx
Big Data Analytics - Unit 3.pptxPlacementsBCA
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9Roger Barga
 
Think-Aloud Protocols
Think-Aloud ProtocolsThink-Aloud Protocols
Think-Aloud Protocolsbutest
 
Nursing Research Sampling Technique .pptx
Nursing Research Sampling Technique .pptxNursing Research Sampling Technique .pptx
Nursing Research Sampling Technique .pptxChinna Chadayan
 

Similar to ML_DT.pdf (20)

Decision tree
Decision tree Decision tree
Decision tree
 
Machine learning session6(decision trees random forrest)
Machine learning   session6(decision trees random forrest)Machine learning   session6(decision trees random forrest)
Machine learning session6(decision trees random forrest)
 
Research trends in data warehousing and data mining
Research trends in data warehousing and data miningResearch trends in data warehousing and data mining
Research trends in data warehousing and data mining
 
Module 6: Ensemble Algorithms
Module 6:  Ensemble AlgorithmsModule 6:  Ensemble Algorithms
Module 6: Ensemble Algorithms
 
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
Random Forest Tutorial | Random Forest in R | Machine Learning | Data Science...
 
Machine Learning Approach.pptx
Machine Learning Approach.pptxMachine Learning Approach.pptx
Machine Learning Approach.pptx
 
Data Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptData Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.ppt
 
Data Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.pptData Mining Concepts and Techniques.ppt
Data Mining Concepts and Techniques.ppt
 
Random forest and decision tree
Random forest and decision treeRandom forest and decision tree
Random forest and decision tree
 
Dataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptxDataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptx
 
Dbm630 lecture06
Dbm630 lecture06Dbm630 lecture06
Dbm630 lecture06
 
Module 5: Decision Trees
Module 5: Decision TreesModule 5: Decision Trees
Module 5: Decision Trees
 
Machine Learning using biased data
Machine Learning using biased dataMachine Learning using biased data
Machine Learning using biased data
 
unit classification.pptx
unit  classification.pptxunit  classification.pptx
unit classification.pptx
 
3 classification
3  classification3  classification
3 classification
 
Big Data Analytics - Unit 3.pptx
Big Data Analytics - Unit 3.pptxBig Data Analytics - Unit 3.pptx
Big Data Analytics - Unit 3.pptx
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9
 
Decision tree
Decision treeDecision tree
Decision tree
 
Think-Aloud Protocols
Think-Aloud ProtocolsThink-Aloud Protocols
Think-Aloud Protocols
 
Nursing Research Sampling Technique .pptx
Nursing Research Sampling Technique .pptxNursing Research Sampling Technique .pptx
Nursing Research Sampling Technique .pptx
 

More from AmirMohamedNabilSale (18)

LecccccccccccccProgrammingLecture-09.pdf
LecccccccccccccProgrammingLecture-09.pdfLecccccccccccccProgrammingLecture-09.pdf
LecccccccccccccProgrammingLecture-09.pdf
 
p1.pdf
p1.pdfp1.pdf
p1.pdf
 
9.b-CMPS 403-F20-Session 9-Intro to ML II.pdf
9.b-CMPS 403-F20-Session 9-Intro to ML II.pdf9.b-CMPS 403-F20-Session 9-Intro to ML II.pdf
9.b-CMPS 403-F20-Session 9-Intro to ML II.pdf
 
6.c-CMPS 403-F19-Session 6-Resolution.pdf
6.c-CMPS 403-F19-Session 6-Resolution.pdf6.c-CMPS 403-F19-Session 6-Resolution.pdf
6.c-CMPS 403-F19-Session 6-Resolution.pdf
 
3.b-CMPS 403-F20-Session 3-Solving CSP I.pdf
3.b-CMPS 403-F20-Session 3-Solving CSP I.pdf3.b-CMPS 403-F20-Session 3-Solving CSP I.pdf
3.b-CMPS 403-F20-Session 3-Solving CSP I.pdf
 
2.a-CMPS 403-F20-Session 2-Search Problems.pdf
2.a-CMPS 403-F20-Session 2-Search Problems.pdf2.a-CMPS 403-F20-Session 2-Search Problems.pdf
2.a-CMPS 403-F20-Session 2-Search Problems.pdf
 
LectureNote2.pdf
LectureNote2.pdfLectureNote2.pdf
LectureNote2.pdf
 
Lecture_1_matrix_operations.pdf
Lecture_1_matrix_operations.pdfLecture_1_matrix_operations.pdf
Lecture_1_matrix_operations.pdf
 
ML_1.pdf
ML_1.pdfML_1.pdf
ML_1.pdf
 
232021-211025052822.pdf
232021-211025052822.pdf232021-211025052822.pdf
232021-211025052822.pdf
 
9a52019-211025074532.pdf
9a52019-211025074532.pdf9a52019-211025074532.pdf
9a52019-211025074532.pdf
 
random-211016153637.pdf
random-211016153637.pdfrandom-211016153637.pdf
random-211016153637.pdf
 
Linux.pdf
Linux.pdfLinux.pdf
Linux.pdf
 
Linux_Commands.pdf
Linux_Commands.pdfLinux_Commands.pdf
Linux_Commands.pdf
 
AI in covid 19 (1).pptx
AI in covid 19 (1).pptxAI in covid 19 (1).pptx
AI in covid 19 (1).pptx
 
COVID-19 PowerPoint.pptx
COVID-19 PowerPoint.pptxCOVID-19 PowerPoint.pptx
COVID-19 PowerPoint.pptx
 
Edu week2022.pptx
Edu week2022.pptxEdu week2022.pptx
Edu week2022.pptx
 
2.pdf
2.pdf2.pdf
2.pdf
 

Recently uploaded

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfCionsystems
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 

Recently uploaded (20)

CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdf
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 

ML_DT.pdf