SlideShare a Scribd company logo
Learning From Imbalanced Data
Dr. Mona M.Soliman
Faculty of computers and Artificial Intelligence , Cairo University, Egypt
email: mona.Solyman@fci-cu.edu.eg
Senior Member of
Scientific Research Group in
Egypt (SRGE).
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Agenda
Introduction
Learning
Imbalanced Data
Approaches for imbalanced data
Comparative Analysis of Solutions
2
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Introduction
• Data imbalance occurs when the number of
instances for different classes are significantly
out of proportion.
• The minority classes with fewer instances
usually contain the essential information, which
has been observed in broad application areas,
such as medical diagnosis, image
classification, fault identification etc.
• Many typical classifiers may generate
unsatisfactory results due to a concentration on
global accuracy while ignoring the identification
performance for minority samples.
3
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced data application
domain areas
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced classification
publishing
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Learning
6
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Machine Learning
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced Data Problem
• One class is at least depicted with just a few number of samples (called the
minority class) and rest falls into the other class (called the majority class).
• Most standard algorithms assume or expect balanced class distributions or
equal misclassification costs. The fundamental issue with the imbalanced
learning problem is the ability of imbalanced data to significantly compromise
the performance of most standard learning algorithms.
• For imbalanced data sets, learning algorithms fail to properly represent the
distributive characteristics of the data and resultantly provide unfavorable
accuracies across the classes of the data.
Evaluation metrics
• Accuracy is not sensitive to imbalance at all, while precision, recall and f1
are. AUC-ROC is not sensitive to imbalance.
Type-I error
Type-II error
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Evaluation for classification
models
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Approaches for imbalanced data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced Data approaches
1. Preprocessing methods
• Pre-processing approaches (data
centered approaches ) are those
that are performed on training
data.
• Pre-processing techniques are
applied to gain better training
data.
• These approaches work by
directly acting upon data space
and tries to reduce the imbalance
ratio between classes.
• Actual classification stage is
adapted by pre-processing
approaches; thus these are
flexible to follow.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced Data approaches
1.1 Sampling methods
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Random Oversampling
• Synthetic Minority
Oversampling Technique
(SMOTE)
• Borderline-SMOTE
• Borderline Oversampling
with SVM
• Adaptive Synthetic
Sampling (ADASYN)
Imbalanced Data approaches
1.1.1 Oversampling methods
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Random Undersampling
• Condensed Nearest
Neighbor Rule (CNN)
• Near Miss Undersampling
• Tomek Links
Undersampling
• Edited Nearest Neighbors
Rule (ENN)
• One-Sided Selection (OSS)
• Neighborhood Cleaning
Rule (NCR)
Imbalanced Data approaches
1.1.2 Oversampling methods
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Hybrid sampling methods are those that apply both re-sampling
techniques to attain balance in the data.
• To get a balanced training data space, under sample to delete the
instances without containing useful information. Then over-sampling is
done to replicate existing instances.
Imbalanced Data approaches
1.1.3 Hybrid sampling
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Approaches for imbalanced data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Selecting subset of relevant
features or attributes from
high dimensional data sets
helps to upgrade the
performance of the classifier
• Selecting features is
generally gained by three
methods:
 filter method
 wrapper method
 embedded method.
Imbalanced Data approaches
1.2 Feature selection methods
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Approaches for imbalanced data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Traditionally, machine learning
algorithms are trained on a dataset
and seek to minimize error.
• Cost-sensitive learning for
imbalanced classification is
focused on first assigning different
costs to the types of
misclassification errors that can be
made, then using specialized
methods to take those costs into
account.
• Cost for misclassification is added
to the error or used to weight the
error during the training process.
Imbalanced Data approaches
2 Cost sensitive learning
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Approaches for imbalanced data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• For solving the imbalanced data classification
problem, creating modern algorithms or
upgrading the existent one is known as
algorithmic centered approaches.
3.1 Bagging
3.2 Boosting
3.3 Cost sensitive SVM
Imbalanced Data approaches
3 Algorithm centered approach
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• As there is possibility of losing the
informative instances with under-
sampling.Cluster-based
undersampling technique proves to
be an alternative to random under-
sampling.
• In cluster-based undersampling
training data space is divided into n
number of clusters. Then, there is
selection of right samples from the
plagiarised clusters. The primary
idea behind this method that
training data space splits into n
different clusters and every cluster
poses distinguishable
characteristics
Imbalanced Data approaches
3.1 Cluster based under sampling
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• stands for Bootstrap Aggregation.
It is an efficient idea to decrease
the variance of the prediction.
• In this, original data space is
divided into multi sets having same
size. Thus, each multi set
containing same size creates one
classifier.
• Aggregation of classifiers
contribute a compound classifier.
• Bagging is used for reducing Overfitting in
order to create strong learners for
generating accurate predictions.
Imbalanced Data approaches
3.1 Bagging
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• Each classifier is serially trained with the
goal of correctly classifying examples in
every round that were incorrectly classified
in the previous round.
• In the next iteration, the new classifier
focuses on or places more weight to those
cases which were incorrectly classified in
the last round.
• Effective and accurate prediction
rules are generated by integrating
various weak and inaccurate ones.
Imbalanced Data approaches
3.2 Boosting
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• The basic goal of SVM is to classify
data by building the linear decision
boundary (hyper-plane). It splits the
data points according to their class.
SVM dealing with balanced data,
gives best performance. But in the
case of highly imbalanced its
hyperplane gets partial towards the
majority class
• A method is proposed in which every
class’s classification error gets
assigned a different penalty cost.
Imbalanced Data approaches
3.3 Cost Sensitive SVM
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Major challenges
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Approaches for
imbalanced data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Imbalanced Data approaches
4. Hybrid methods
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Comparative Analysis of
Solutions
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Acknowledgment

More Related Content

What's hot

Introduction to Linear Discriminant Analysis
Introduction to Linear Discriminant AnalysisIntroduction to Linear Discriminant Analysis
Introduction to Linear Discriminant Analysis
Jaclyn Kokx
 
Random forest algorithm
Random forest algorithmRandom forest algorithm
Random forest algorithm
Rashid Ansari
 
Feature Extraction
Feature ExtractionFeature Extraction
Feature Extractionskylian
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Simplilearn
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
Md. Main Uddin Rony
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
Rahul Kumar
 
Dbscan algorithom
Dbscan algorithomDbscan algorithom
Dbscan algorithom
Mahbubur Rahman Shimul
 
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
Simplilearn
 
Feature selection
Feature selectionFeature selection
Feature selection
Dong Guo
 
Ensemble methods
Ensemble methods Ensemble methods
Ensemble methods
zekeLabs Technologies
 
Machine learning session4(linear regression)
Machine learning   session4(linear regression)Machine learning   session4(linear regression)
Machine learning session4(linear regression)
Abhimanyu Dwivedi
 
Class imbalance problem1
Class imbalance problem1Class imbalance problem1
Class imbalance problem1
chs71
 
Ensemble methods in machine learning
Ensemble methods in machine learningEnsemble methods in machine learning
Ensemble methods in machine learning
SANTHOSH RAJA M G
 
Support Vector Machines- SVM
Support Vector Machines- SVMSupport Vector Machines- SVM
Support Vector Machines- SVM
Carlo Carandang
 
Feed forward ,back propagation,gradient descent
Feed forward ,back propagation,gradient descentFeed forward ,back propagation,gradient descent
Feed forward ,back propagation,gradient descent
Muhammad Rasel
 
Bias and variance trade off
Bias and variance trade offBias and variance trade off
Bias and variance trade off
VARUN KUMAR
 
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
Sebastian Raschka
 
Gradient Boosted trees
Gradient Boosted treesGradient Boosted trees
Gradient Boosted trees
Nihar Ranjan
 
Machine Learning using Support Vector Machine
Machine Learning using Support Vector MachineMachine Learning using Support Vector Machine
Machine Learning using Support Vector Machine
Mohsin Ul Haq
 
Lecture 6: Ensemble Methods
Lecture 6: Ensemble Methods Lecture 6: Ensemble Methods
Lecture 6: Ensemble Methods
Marina Santini
 

What's hot (20)

Introduction to Linear Discriminant Analysis
Introduction to Linear Discriminant AnalysisIntroduction to Linear Discriminant Analysis
Introduction to Linear Discriminant Analysis
 
Random forest algorithm
Random forest algorithmRandom forest algorithm
Random forest algorithm
 
Feature Extraction
Feature ExtractionFeature Extraction
Feature Extraction
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Dbscan algorithom
Dbscan algorithomDbscan algorithom
Dbscan algorithom
 
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
Random Forest Algorithm - Random Forest Explained | Random Forest In Machine ...
 
Feature selection
Feature selectionFeature selection
Feature selection
 
Ensemble methods
Ensemble methods Ensemble methods
Ensemble methods
 
Machine learning session4(linear regression)
Machine learning   session4(linear regression)Machine learning   session4(linear regression)
Machine learning session4(linear regression)
 
Class imbalance problem1
Class imbalance problem1Class imbalance problem1
Class imbalance problem1
 
Ensemble methods in machine learning
Ensemble methods in machine learningEnsemble methods in machine learning
Ensemble methods in machine learning
 
Support Vector Machines- SVM
Support Vector Machines- SVMSupport Vector Machines- SVM
Support Vector Machines- SVM
 
Feed forward ,back propagation,gradient descent
Feed forward ,back propagation,gradient descentFeed forward ,back propagation,gradient descent
Feed forward ,back propagation,gradient descent
 
Bias and variance trade off
Bias and variance trade offBias and variance trade off
Bias and variance trade off
 
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
 
Gradient Boosted trees
Gradient Boosted treesGradient Boosted trees
Gradient Boosted trees
 
Machine Learning using Support Vector Machine
Machine Learning using Support Vector MachineMachine Learning using Support Vector Machine
Machine Learning using Support Vector Machine
 
Lecture 6: Ensemble Methods
Lecture 6: Ensemble Methods Lecture 6: Ensemble Methods
Lecture 6: Ensemble Methods
 

Similar to Learning from imbalanced data

IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET Journal
 
Multi objective hybrid artificial intelligence approach for fault diagnosis o...
Multi objective hybrid artificial intelligence approach for fault diagnosis o...Multi objective hybrid artificial intelligence approach for fault diagnosis o...
Multi objective hybrid artificial intelligence approach for fault diagnosis o...
Aboul Ella Hassanien
 
Educational Data Mining to Analyze Students Performance – Concept Plan
Educational Data Mining to Analyze Students Performance – Concept PlanEducational Data Mining to Analyze Students Performance – Concept Plan
Educational Data Mining to Analyze Students Performance – Concept Plan
IRJET Journal
 
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET Journal
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
VishalLabde
 
Time series anomaly detection using cnn coupled with data augmentation using ...
Time series anomaly detection using cnn coupled with data augmentation using ...Time series anomaly detection using cnn coupled with data augmentation using ...
Time series anomaly detection using cnn coupled with data augmentation using ...
Prasenjeet Acharjee
 
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCEA SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
IJCI JOURNAL
 
Lecture-2 Applied ML .pptx
Lecture-2 Applied ML .pptxLecture-2 Applied ML .pptx
Lecture-2 Applied ML .pptx
ZainULABIDIN496386
 
Experiental learning.pptx with expert learning
Experiental learning.pptx with expert learningExperiental learning.pptx with expert learning
Experiental learning.pptx with expert learning
kapadesagar12
 
An approach for improved students’ performance prediction using homogeneous ...
An approach for improved students’ performance prediction  using homogeneous ...An approach for improved students’ performance prediction  using homogeneous ...
An approach for improved students’ performance prediction using homogeneous ...
IJECEIAES
 
An enhanced kernel weighted collaborative recommended system to alleviate spa...
An enhanced kernel weighted collaborative recommended system to alleviate spa...An enhanced kernel weighted collaborative recommended system to alleviate spa...
An enhanced kernel weighted collaborative recommended system to alleviate spa...
IJECEIAES
 
An advance extended binomial GLMBoost ensemble method with synthetic minorit...
An advance extended binomial GLMBoost ensemble method  with synthetic minorit...An advance extended binomial GLMBoost ensemble method  with synthetic minorit...
An advance extended binomial GLMBoost ensemble method with synthetic minorit...
IJECEIAES
 
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian network
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian networkImpact of big data congestion in IT: An adaptive knowledgebased Bayesian network
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian network
IJECEIAES
 
Hypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining AlgorithmsHypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining Algorithms
IJERA Editor
 
Final Report
Final ReportFinal Report
Final Reportimu409
 
Review of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & PredictionReview of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & Prediction
IRJET Journal
 
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and LimeIRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
IRJET Journal
 
IRJET- Student Placement Prediction using Machine Learning
IRJET- Student Placement Prediction using Machine LearningIRJET- Student Placement Prediction using Machine Learning
IRJET- Student Placement Prediction using Machine Learning
IRJET Journal
 
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
IRJET Journal
 
IRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender SystemIRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender System
IRJET Journal
 

Similar to Learning from imbalanced data (20)

IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data Mining
 
Multi objective hybrid artificial intelligence approach for fault diagnosis o...
Multi objective hybrid artificial intelligence approach for fault diagnosis o...Multi objective hybrid artificial intelligence approach for fault diagnosis o...
Multi objective hybrid artificial intelligence approach for fault diagnosis o...
 
Educational Data Mining to Analyze Students Performance – Concept Plan
Educational Data Mining to Analyze Students Performance – Concept PlanEducational Data Mining to Analyze Students Performance – Concept Plan
Educational Data Mining to Analyze Students Performance – Concept Plan
 
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...IRJET -  	  An User Friendly Interface for Data Preprocessing and Visualizati...
IRJET - An User Friendly Interface for Data Preprocessing and Visualizati...
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
 
Time series anomaly detection using cnn coupled with data augmentation using ...
Time series anomaly detection using cnn coupled with data augmentation using ...Time series anomaly detection using cnn coupled with data augmentation using ...
Time series anomaly detection using cnn coupled with data augmentation using ...
 
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCEA SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
A SURVEY OF METHODS FOR HANDLING DISK DATA IMBALANCE
 
Lecture-2 Applied ML .pptx
Lecture-2 Applied ML .pptxLecture-2 Applied ML .pptx
Lecture-2 Applied ML .pptx
 
Experiental learning.pptx with expert learning
Experiental learning.pptx with expert learningExperiental learning.pptx with expert learning
Experiental learning.pptx with expert learning
 
An approach for improved students’ performance prediction using homogeneous ...
An approach for improved students’ performance prediction  using homogeneous ...An approach for improved students’ performance prediction  using homogeneous ...
An approach for improved students’ performance prediction using homogeneous ...
 
An enhanced kernel weighted collaborative recommended system to alleviate spa...
An enhanced kernel weighted collaborative recommended system to alleviate spa...An enhanced kernel weighted collaborative recommended system to alleviate spa...
An enhanced kernel weighted collaborative recommended system to alleviate spa...
 
An advance extended binomial GLMBoost ensemble method with synthetic minorit...
An advance extended binomial GLMBoost ensemble method  with synthetic minorit...An advance extended binomial GLMBoost ensemble method  with synthetic minorit...
An advance extended binomial GLMBoost ensemble method with synthetic minorit...
 
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian network
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian networkImpact of big data congestion in IT: An adaptive knowledgebased Bayesian network
Impact of big data congestion in IT: An adaptive knowledgebased Bayesian network
 
Hypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining AlgorithmsHypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining Algorithms
 
Final Report
Final ReportFinal Report
Final Report
 
Review of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & PredictionReview of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & Prediction
 
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and LimeIRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
IRJET- Stabilization of Black Cotton Soil using Rice Husk Ash and Lime
 
IRJET- Student Placement Prediction using Machine Learning
IRJET- Student Placement Prediction using Machine LearningIRJET- Student Placement Prediction using Machine Learning
IRJET- Student Placement Prediction using Machine Learning
 
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
Agricultural Product Price and Crop Cultivation Prediction based on Data Scie...
 
IRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender SystemIRJET-Smart Tourism Recommender System
IRJET-Smart Tourism Recommender System
 

More from Aboul Ella Hassanien

الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdfالأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
Aboul Ella Hassanien
 
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
Aboul Ella Hassanien
 
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
Aboul Ella Hassanien
 
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
Aboul Ella Hassanien
 
Intelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptxIntelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptx
Aboul Ella Hassanien
 
دليل البحث العلمى .pdf
دليل البحث العلمى .pdfدليل البحث العلمى .pdf
دليل البحث العلمى .pdf
Aboul Ella Hassanien
 
SRGE photo.pdf
SRGE photo.pdfSRGE photo.pdf
SRGE photo.pdf
Aboul Ella Hassanien
 
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
Aboul Ella Hassanien
 
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي  الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
Aboul Ella Hassanien
 
الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى
Aboul Ella Hassanien
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
Aboul Ella Hassanien
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
Aboul Ella Hassanien
 
التغير المناخى للاطفال
التغير المناخى للاطفالالتغير المناخى للاطفال
التغير المناخى للاطفال
Aboul Ella Hassanien
 
الذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفالالذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفال
Aboul Ella Hassanien
 
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسىإستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
Aboul Ella Hassanien
 
الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية  الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية
Aboul Ella Hassanien
 
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
Aboul Ella Hassanien
 
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسيةالذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
Aboul Ella Hassanien
 
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
Aboul Ella Hassanien
 
اقتصاد ميتافيرس
اقتصاد ميتافيرساقتصاد ميتافيرس
اقتصاد ميتافيرس
Aboul Ella Hassanien
 

More from Aboul Ella Hassanien (20)

الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdfالأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
 
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
 
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
 
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
 
Intelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptxIntelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptx
 
دليل البحث العلمى .pdf
دليل البحث العلمى .pdfدليل البحث العلمى .pdf
دليل البحث العلمى .pdf
 
SRGE photo.pdf
SRGE photo.pdfSRGE photo.pdf
SRGE photo.pdf
 
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
 
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي  الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
 
الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
 
التغير المناخى للاطفال
التغير المناخى للاطفالالتغير المناخى للاطفال
التغير المناخى للاطفال
 
الذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفالالذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفال
 
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسىإستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
 
الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية  الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية
 
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
 
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسيةالذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
 
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
 
اقتصاد ميتافيرس
اقتصاد ميتافيرساقتصاد ميتافيرس
اقتصاد ميتافيرس
 

Recently uploaded

ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
Kamal Acharya
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
DuvanRamosGarzon1
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
Kamal Acharya
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
Kamal Acharya
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 

Recently uploaded (20)

ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdfCOLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
COLLEGE BUS MANAGEMENT SYSTEM PROJECT REPORT.pdf
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 

Learning from imbalanced data

  • 1. Learning From Imbalanced Data Dr. Mona M.Soliman Faculty of computers and Artificial Intelligence , Cairo University, Egypt email: mona.Solyman@fci-cu.edu.eg Senior Member of Scientific Research Group in Egypt (SRGE). Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 2. Agenda Introduction Learning Imbalanced Data Approaches for imbalanced data Comparative Analysis of Solutions 2 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 3. Introduction • Data imbalance occurs when the number of instances for different classes are significantly out of proportion. • The minority classes with fewer instances usually contain the essential information, which has been observed in broad application areas, such as medical diagnosis, image classification, fault identification etc. • Many typical classifiers may generate unsatisfactory results due to a concentration on global accuracy while ignoring the identification performance for minority samples. 3 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 4. Imbalanced data application domain areas Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 5. Imbalanced classification publishing Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 6. Learning 6 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 7. Machine Learning Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 8. Imbalanced Data Problem • One class is at least depicted with just a few number of samples (called the minority class) and rest falls into the other class (called the majority class). • Most standard algorithms assume or expect balanced class distributions or equal misclassification costs. The fundamental issue with the imbalanced learning problem is the ability of imbalanced data to significantly compromise the performance of most standard learning algorithms. • For imbalanced data sets, learning algorithms fail to properly represent the distributive characteristics of the data and resultantly provide unfavorable accuracies across the classes of the data.
  • 9. Evaluation metrics • Accuracy is not sensitive to imbalance at all, while precision, recall and f1 are. AUC-ROC is not sensitive to imbalance. Type-I error Type-II error Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 10. Evaluation for classification models Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 11. Approaches for imbalanced data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 12. Imbalanced Data approaches 1. Preprocessing methods • Pre-processing approaches (data centered approaches ) are those that are performed on training data. • Pre-processing techniques are applied to gain better training data. • These approaches work by directly acting upon data space and tries to reduce the imbalance ratio between classes. • Actual classification stage is adapted by pre-processing approaches; thus these are flexible to follow. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 13. Imbalanced Data approaches 1.1 Sampling methods Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 14. • Random Oversampling • Synthetic Minority Oversampling Technique (SMOTE) • Borderline-SMOTE • Borderline Oversampling with SVM • Adaptive Synthetic Sampling (ADASYN) Imbalanced Data approaches 1.1.1 Oversampling methods Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 15. • Random Undersampling • Condensed Nearest Neighbor Rule (CNN) • Near Miss Undersampling • Tomek Links Undersampling • Edited Nearest Neighbors Rule (ENN) • One-Sided Selection (OSS) • Neighborhood Cleaning Rule (NCR) Imbalanced Data approaches 1.1.2 Oversampling methods Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 16. • Hybrid sampling methods are those that apply both re-sampling techniques to attain balance in the data. • To get a balanced training data space, under sample to delete the instances without containing useful information. Then over-sampling is done to replicate existing instances. Imbalanced Data approaches 1.1.3 Hybrid sampling Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 17. Approaches for imbalanced data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 18. • Selecting subset of relevant features or attributes from high dimensional data sets helps to upgrade the performance of the classifier • Selecting features is generally gained by three methods:  filter method  wrapper method  embedded method. Imbalanced Data approaches 1.2 Feature selection methods Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 19. Approaches for imbalanced data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 20. • Traditionally, machine learning algorithms are trained on a dataset and seek to minimize error. • Cost-sensitive learning for imbalanced classification is focused on first assigning different costs to the types of misclassification errors that can be made, then using specialized methods to take those costs into account. • Cost for misclassification is added to the error or used to weight the error during the training process. Imbalanced Data approaches 2 Cost sensitive learning Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 21. Approaches for imbalanced data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 22. • For solving the imbalanced data classification problem, creating modern algorithms or upgrading the existent one is known as algorithmic centered approaches. 3.1 Bagging 3.2 Boosting 3.3 Cost sensitive SVM Imbalanced Data approaches 3 Algorithm centered approach Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 23. • As there is possibility of losing the informative instances with under- sampling.Cluster-based undersampling technique proves to be an alternative to random under- sampling. • In cluster-based undersampling training data space is divided into n number of clusters. Then, there is selection of right samples from the plagiarised clusters. The primary idea behind this method that training data space splits into n different clusters and every cluster poses distinguishable characteristics Imbalanced Data approaches 3.1 Cluster based under sampling Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 24. • stands for Bootstrap Aggregation. It is an efficient idea to decrease the variance of the prediction. • In this, original data space is divided into multi sets having same size. Thus, each multi set containing same size creates one classifier. • Aggregation of classifiers contribute a compound classifier. • Bagging is used for reducing Overfitting in order to create strong learners for generating accurate predictions. Imbalanced Data approaches 3.1 Bagging Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 25. • Each classifier is serially trained with the goal of correctly classifying examples in every round that were incorrectly classified in the previous round. • In the next iteration, the new classifier focuses on or places more weight to those cases which were incorrectly classified in the last round. • Effective and accurate prediction rules are generated by integrating various weak and inaccurate ones. Imbalanced Data approaches 3.2 Boosting Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 26. • The basic goal of SVM is to classify data by building the linear decision boundary (hyper-plane). It splits the data points according to their class. SVM dealing with balanced data, gives best performance. But in the case of highly imbalanced its hyperplane gets partial towards the majority class • A method is proposed in which every class’s classification error gets assigned a different penalty cost. Imbalanced Data approaches 3.3 Cost Sensitive SVM Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 27. Major challenges Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 28. Approaches for imbalanced data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 29. Imbalanced Data approaches 4. Hybrid methods Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 30. Comparative Analysis of Solutions Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021