A survey of fault prediction using machine learning algorithms

Post on 22-Apr-2015

2.246 views 4 download

description

Reliability is concerned with decreasing faults and their impact. The earlier the faults are detected the better. That's why this presentation talks about automated techniques using machine learning to detect faults as early as possible.

Transcript of A survey of fault prediction using machine learning algorithms

A Survey Of Fault Prediction Using Machine Learning Algorithms

Presented by: Ahmed Magdy Ezzeldin

Instroduction

The world relies on software heavily now so it should be reliable

Software Reliability is the probability of a software system or component to perform its intended function under the specified operating conditions over the specified period of time [1]

In other words the less faults there are in a software the more reliable it is.

What is Fault Proneness and Fault Predeiction

A fault is a problem in software that when run causes a failure.

Fault Proneness is the likelihood of a piece of software to have faults.

Fault prediction is identified as one major area to predict the probability that the software contains fault.

We will survey 4 papers that use Machine learning to predict faults as early as possible.

[1]

A Fuzzy Model for Early Software Fault Prediction Using Process Maturity and Software Metrics

What is Fuzzy Logic

Fuzzy logic is a form of logic deals deals with reasoning that is approximate rather than fixed and exact. Its variables may have a truth value that ranges in degree between 0 and 1.

It works by taking inputs in a range form then setting rules that define how these inputs will be used and then finding out the output and defuzzification by finding out a crisp value from a Fuzzy set.

The Model

The model considers two most significant factors, software metrics and process maturity together, for fault prediction.

Input: Reliability Relevant Metric List (RRML)

Output: Faults at the end of Requirements Phase

(FRP) Faults at the end of Design Phase (FDP) Faults at the end of Coding Phase (FCP)

RRML

Reliability Relevant Metric List (RRML) Requirements Metrics (RM)

Requirements Change Request (RCR) Review, Inspection and Walk through (RIW) Process Maturity (PM)

Design Metrics (DM) Design Defect Density (DDD) Fault Days Number (FDN) Data Flow Complexity (DC)

Coding Metrics (CM) Code Defect Density (CDD) Cyclomatic Complexity (CC)

Proposed Model

Early Fault Prediction Model

●(1) Early Information gathering Phase

a) Identify the Input and Output Variables according to subjective knowledge & expert opinion

b) Develop Fuzzy Profile of Identified Variables

Define the membership function using expert’s opinion, user’s expectations, and previous data

Inputs

Fuzzy Profile of RCR Fuzzy Profile of RIW

Fuzzy Profile of PM Fuzzy Profile of DDD

Fuzzy Profile of FDN Fuzzy Profile of DC

Fuzzy Profile of CC Fuzzy Profile of CDD

Outputs

Fuzzy Profile of FCP

Fuzzy Profile of FRP Fuzzy Profile of FDP

Fuzzy Rule Base

c) Develop Fuzzy Rule Base

From Domain Experts, historical data analysis of similar or earlier system, and engineering knowledge from existing literature’s

Rules in the form of ‘If A then B’

Fuzzy Rule Base

(2) Information processing phase

Mapping inputs on to output (fuzzy inference process or fuzzy reasoning)

Defuzzification is the process of deriving a crisp value from a fuzzy set using a defuzzification method.

Results

The number of faults at end of each phase.

Could only detect defects from 0 to 85

My opinion is that this should be mutiplied by a metric that show the size of the software (like function points, or object points) to predict the amount of faults in it.

Results [continued]

[2]

Software Fault Proneness Prediction Using Support

Vector Machines

What is SVM?

A support vector machine (SVM) is a supervised learning method that analyzes data and recognizes patterns. The standard SVM takes a set of input data and predicts, for each given input, which of two possible classes comprises the input.

The approach uses an SVM model to find the relationship between object-oriented metrics and fault proneness empirically evaluated using the KC1 NASA data set of a storage management system for ground data written in C++ with 145 classes and 2107 methods and 40 KLOC.

Metrics Studied

Some Measures

Sensitivity is defined as the probability that a module which contains a fault is correctly classified [7]

Specificity is the proportion of correctly identified fault-free modules.[7]

Probability of False alarm (PF) is the proportion of fault-free modules that are classified erroneously. PF=1-specificity [7]

Precision is the probability of correctly predicting faulty modules among the modules classified as fault-prone. [7]

Completeness value, which is defined as the number of faults in faulty predicted classes divided by the number of faults in all classes. [8]

Results

Results [continued]

Results [continued]

Results [continued]

Sensitivity and Completeness of the model

[3]

A Genetic Algorithm Based Classification Approach for Finding Fault Prone Classes

What is GA?

A genetic algorithm (GA) is a search technique used in computing to find exact or approximate solutions to optimization and search problems.

The accuracy of the developed system to find fault prone classes is measured as 80.14%

How it works?

In the beginning start with a large “population” of randomly generated “attempted solutions” to a problem then repeatedly do the following:

• Evaluate each of the attempted solutions

• Keep a subset of these solutions (the “best” ones)

• Use these solutions to generate a new population

• Quit when you have a satisfactory solution (or you run out of time)

With help of Genetic algorithm classification of the software components into faulty/fault-free systems is performed

Used Metrics

●Coupling between Objects (CBO)●Lack of Cohesion (LCOM)●Number of Children (NOC)●Depth of Inheritance (DIT)●Weighted Methods per Class (WMC)●Response for a Class (RFC)●Number of Public Methods (NPM)●Lines Of Code (LOC)

Flowchart of GA based approach

[4]

Comparing The Effectiveness Of Machine Learning

Algorithms For Defect Prediction

Machine Learning Algorithms used

3 machine learning algorithms J48 OneR Naïve Bayes

Used 29 Metrics Applied on 2 Small embedded pieces of

software written in C 121 modules having 9 defective ones 101 modules having 15 defective ones

J48

J48 : JAVA implementation of Quinlan’s C4.5 algorithm

C4.5 recursively splits a data set according to checks on attribute values

C4.5 uses greedy top-down construction technique to build classification decision trees using information theory

OneR

OneR induces simple rules based on a single attribute

OneR creates one rule for each attribute in the training data, then selects the rule with the smallest error rate to be the only one rule.

Determines the class that appears most often for an attribute value

A rule is simply a set of attribute values bound to their majority class.

The error rate is the number of training data instances that the class of an attribute value does not agree with the binding for that attribute value in the rule.[4]

Naïve Bayes

Naïve Bayes: based on theorem of Bayes posterior probability

Naïve Bayes assumes that all classes are conditionally independent i.e. there are no dependence relationship among

the attributes.

Naïve Bayes classifier estimates the probability of attribute values of each class from the training set by counting the frequency of each discrete attribute values. [4]

Results

Results [continued]

J48 and OneR performed better than Naïve Bayes.

The performance of J48, OneR and Naïve Bayes for correctly classified instances are 90.086%, 89.2562% and 85.124% respectively. [4]

Conclusion

Early fault prediction saves projects from budget overrun and risks.

We discussed 4 approaches to fault prediction using machine learning algorithms on different reliability relevant software metrics and Capability Maturity Model (CMM) level.

Results show that machine learning algorithms have good accuracy that can range from 80% to 90%

Machine Learning approaches can also help software maintenance developers to classifying software modules into faulty and non-faulty modules.

References

[1] A Fuzzy Model for Early Software Fault Prediction Using Process Maturity and Software Metrics (Ajeet Kumar Pandey & N. K. Goyal, Reliability Engineering Centre, IIT Kharagpur, INDIA)

[2] Software Fault Proneness Prediction Using Support Vector Machines (Yogesh Singh, Arvinder Kaur, Ruchika Malhotra)

[3] A Genetic Algorithm Based Classification Approach for Finding Fault Prone Classes (Parvinder S. Sandhu, Satish Kumar Dhiman, Anmol Goyal)

[4] Comparing The Effectiveness Of Machine Learning Algorithms For Defect Prediction by Pradeep Singh

References [continued]

[5] Mining Metrics to Predict Component Failures (Nachiappan Nagappan, Thomas Ball, and Andreas Zeller)

[6] Data Mining Static Code Attributes to Learn Defect Predictors (Tim Menzies, and Jeremy Greenwald)

[7] Techniques for evaluating fault prediction models (Yue Jiang & Bojan Cukic & Yan Ma)

[8] Empirical Validation of Object-Oriented Metrics on Open Source Software for Fault Prediction (Tibor Gyimothy, Rudolf Ferenc, and Istvan Siket)

Thank YouQuestions?