SlideShare a Scribd company logo
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. VI (May – Jun. 2015), PP 64-69
www.iosrjournals.org
DOI: 10.9790/0661-17366469 www.iosrjournals.org 64 | Page
Concept Drift for obtaining Accurate Insight on Process
Execution
Vidya N.Chavada1
, Pratik Kumar2
1
M.E Student, Department of CSE, PIET, Vadodara, India
2Asst. Prof.,Department of CSE, PIET, Vadodara, India
Abstract: Most business processes update with respect time, existing or old process mining strategies used to
resolve those processes when they are under the stable position. My attempt is to improve the existing Drift
Detection in complex Datasets. Organizations would be interested in discovering the progression of change.
There are other applications such as deriving a configurable model for the process change. Online learning
algorithms manage concept drifts in process. There are many dissimilar diversity levels in learning machines
are needed for keep high generalization. Motivated by this concept, propose a new online learning model named
as Diversity for Dealing with Drifts (DDD). By Comparing DDD with other method EDDM conclude that DDD
gives higher accuracy. It keeps ensembles with many dissimilar diversity levels and can achieve good accuracy
than EDDM. Moreover, it is strong and precise when there are false positive drift detections occur than EDDM.
DDD always performed drift handling under many different situations, with very low errors.
Keywords: Ensemble learning, Diversity, Concept Drift, DDD.
I. Introduction
The Although most business processes change with time, existing process mining techniques tend to
analyze these processes as if they are in a steady state [3].Processes may be modifying unexpectedly or slowly.
There is a situation when the relation between the input data and the output variable, changes with time in
unexpected ways which is called concept drift and as in today’s dynamic and demanding business, it requires
detecting it during online analysis as it although most business processes modify with time [4]. Although
detecting concept drifts is important for offline analysis, it is also application oriented and interested to detect
changes in near real time (online analysis). Online learning has been showing to be very useful for a growing
number of applications in which training data are available continuously in time (streams of data). Examples of
such applications are industrial process control, computer security, intelligent user interfaces, market-basket
analysis, information filtering. [5]
In this paper used EDDM (Early Drift Detection Method) and compare it with my proposed method
DDD.EDDM works on thought that the space between two successive errors increases.so, in this distance is
analyze and if it’s reduces according to predefined constant then it’s measured as concept drift. Diversity with
drift detection stored ensembles with altered diversity levels and it is use to attain good precision than EDDM. It
is very strong, than any other drift handling techniques in accuracy when there is any false positive change
detections occur. DDD used in many change handling approaches in many diverse situation, with very less
errors.
In the following section Flowchart of proposed system, Algorithm, experiment result of the system will
explain.
II. Flow Chart Of Proposed System
Proposed system for dealing with concept drift consists of the following modules. There are many
approaches proposed to handle concept drift. Here I have used EDDM and based upon that proposed the DDD
method.
2.1. Dataset Selection and Extraction: in this first of all dataset is selected. In EDDM kc3 dataset and in DDD
mc1 dataset is used. In EDDM method I have used parameters like α and β, Where α > β. Value for both
parameters determined whether the warning level is triggered and whether the concept drift id detect or not.
While in DDD parameters used are pl (low diversity), ph (high diversity), W (multi pliers constant for the weight
old low diversity ensemble) default value is (W=1), pd (parameter for drift detection method).
2.2. Calculation of Accuracy: after extracting dataset accuracy of drift detection is calculated for both EDDM
and DDD. Both Approaches use some measure related to the accuracy to detect drifts. I have included measures
like TP rate, FP rate, precision, and recall, F-measure for false and true class. And also weighted average is
calculated. The rule used to obtain the accuracy on time step t is presented in
Concept Drift for obtaining Accurate Insight on Process Execution
DOI: 10.9790/0661-17366469 www.iosrjournals.org 65 | Page
Figure. 1: Architecture of DDD
2.3. Compare Accuracy: After that comparison of accuracy of EDDM and DDD is done. And based upon that
DDD gives more accuracy than EDDM in both dataset.
III. Description
Diversity with drift detection is in two modes: before the detection of change and after detection of
change. We have used a change detection method, because it permits instant behaviour of changes when they are
found. So, if the parameters of the change detection method are coping to detect change the first possible and the
approach is considered to be strong to detect the false alarms, we may attain quick adaptation to novel concepts.
Online analysis is viewing to be extremely helpful for an increasing number of applications in that
training information are obtainable constantly with respect to time. Example of such applications is process
control in organization, security of computer, market-basket analysis, filtering of information.
In online analysis algorithms it process each training example one time “when coming” with no need of
storage space. In this work we have done a method for detecting concept drift, even in the case of slow gradual
change. It is based on the estimated distribution of the distance between classification errors.
Concept Drift for obtaining Accurate Insight on Process Execution
DOI: 10.9790/0661-17366469 www.iosrjournals.org 66 | Page
IV. Algorithm
Inputs:
ď‚— multiplier constant W for the weight of the old low diversity ensemble;
ď‚— online ensemble learning algorithm EnsembleLearning;
ď‚— parameters for ensemble learning with low diversity pl and high diversity ph;
ď‚— .drift detection method DetectDrift;
ď‚— parameters for drift detection method pd;
ď‚— data stream D;
1: mode < - before drift
2: hnl <- new ensemble /*new low diversity*/
3: hnh < - new ensemble /*new high diversity*/
4: hol < - hoh < - null /*old low and high diversity*/
5: accol < - accoh < - accnl < - accnh < - 0 /*accuracies*/
6: stdol < - stdoh < - stdnl < - stdnh <- 0 /*standard deviations*/
7: while true do
8: d < - next example from D
9: if mode == before drift then
10: prediction hnl(d)
11: else
12: sumacc < - accnl + accol* W +accoh
13: wnl =accnl/sumacc
14: wol = accol *W/sumacc
15: woh = accoh/sumacc
16: prediction<- WeightedMajority(hnl(d), hol(d),hoh(d), wnl, wol, woh)
17: Update(accnl, stdnl, hnl, d)
18: Update(accol, stdol, hol, d)
19: Update(accoh, stdoh, hoh, d)
20: end if
21: drift<- DetectDrift(hnl, d, pd)
22: if drift == true then
23: if mode == before drift OR(mode == after drift AND accnl > accoh) then
24: hol <-hnl
25: else
26: hol<- hoh
27: end if
28: hoh<- hnh
29: hnl <- new ensemble
30: hnh <- new ensemble
31: accol <- accoh <- accnl <- accnh <- 0
32: stdol <- stdoh <- stdnl <- stdnh <- 0
33: mode <- after drift
34: end if
35: if mode == after drift then
36: if accnl > accoh AND accnl > accol then
37: mode<- before drift
38: else
39: if accoh - stdoh > accnl +stdnl AND accoh - stdoh > accol + stdol then
40: hnl<- hoh
41: accnl<- accoh
42: mode<- before drift
43: end if
44: EnsembleLearning(hnl; d; pl)
45: EnsembleLearning(hnh; d; ph)
46: if mode == after drift then
47: EnsembleLearning(hol; d; pl)
48: EnsembleLearning(hoh; d; pl)
49: end if
50: if mode == before drift then
Concept Drift for obtaining Accurate Insight on Process Execution
DOI: 10.9790/0661-17366469 www.iosrjournals.org 67 | Page
51: Output hnl, prediction
52: else
53: Output hnl; hol; hoh; wnl; wol; woh, prediction
Before a detection of drift, the learning system is combined with two ensembles: lower diversity (hnl)
ensemble and higher diversity (hnh) ensemble. Both hnl and hnh are trained with input samples (lines 44 and 45),
here we are considering only low hnl ensemble for predictions of the system (line 10). Hnh is not use for
prediction of the system. Because it’s accuracy is low on the new concept. A change detection method for
monitoring the hnl is used (line 21). After a detection of drift, hnl and hnh is generated (lines 29 and 30). Before
the drift is detected Low and high diversity ensembles are reserved and treated diversity Ensembles as old low
and old high (lines 24 and 28). Learning is done by Both the old and the new ensembles (lines 44-48) and then
calculations of the system are determined by the weighted majority vote of the output of 1) hol, 2) hnl, and 3)
hoh (lines 12-16).
The weights are proportional to the accuracy since the last detection of drift until the preceding time step
(lines 13-15). The weight of the hol ensemble is multiplied by a constant W (line 15), that controlling between
strength to false alarms detection and precision in the existence of concept drifts, and then normalization of
weights are performed. If two successive detections of drift occur, the hol ensemble after the detection of the
second drift can be either the equal as the hoh learning with low diversity after the detection of the first drift or
the ensemble equivalent to the hnl after the first detection of the drift, depends on which of them more precise
(lines 24 and 26). All the four ensembles are stored until either the condition 36 or the condition 39 is fulfilled.
When considering the accuracies whether the hoh ensemble is better than the others are reduced/summed
from their standard deviations.
While returning back to the mode earlier to drift, either the hoh or the hnl ensemble becomes the low
diversity ensemble used in the mode earlier to detection of drift, depending on which of them is more precise.
(lines 36-43).
Diversity in Detection Drift is considered to use data well-read from the old theory in order to help the
learning of the original theory by training a hoh ensemble with low diversity on the new theory.
V. Experimental Result
In existing system for evaluating the concept drift in data set, manually data set of different electronic
hardware items is taken.
Figure. 2: Concept Drift in Product in each year
So, as shown in Fig..2 it’s offline analysis of concept drift in artificial dataset. In this characterization
of the concept drift is not done.
In proposed system we have taken PROMISE data set in order to encourage repeatable, verifiable,
refutable, and/or improvable predictive models of Diversity for Dealing with Drifts. Two real time data ser
mc1.arff and kc3.arff is taken.
By performing evaluation of both dataset in to the system accuracy achieved by DDD and EDDM for
different dataset is shown in following table:
Concept Drift for obtaining Accurate Insight on Process Execution
DOI: 10.9790/0661-17366469 www.iosrjournals.org 68 | Page
Table 1: Comparison Table EDDM and DDD
Figure .3: Comparison of EDDM and DDD for one dataset based on accuracy
Figure .4: comparison of EDDM and DDD for two different dataset based on accuracy.
VI. Comparison Analysis Of Proposed And Existing System
After Successfully Evaluate the result of Proposed Approach with compare to Existing Approach,
we will see a comparative study of both system.
Table 2: Comparison Table of Proposed and Existing system
Proposed System Existing System
ď‚· Its online analysis because I have used real-time dataset and
then compare dataset for EDDM and DDD method.
ď‚· Its offline analysis because I have use artificial data.
ď‚· Real time dataset is used.
ď‚· Data set available in order to encourage repeatable,
verifiable, and/or improvable predictive models of Diversity
for Dealing with Drifts.
ď‚· More than one dataset is used.
ď‚· Artificial dataset is used.
ď‚· And manually calculated the drift in product and year wise.
ď‚· One dataset is used
ď‚· It will automatically find false positive and false negative
drift. Precision is also measure.
ď‚· Put manually drift and then check
ď‚· Accuracy of EDDM and DDD is calculated. And DDD gives
more accuracy than EDDM.
ď‚· Accuracy for drift is not calculated.
ď‚· Characterization is done in graph format for checking drift.
ď‚· Diversity is also considered.
ď‚· Characterization is not done.
Concept Drift for obtaining Accurate Insight on Process Execution
DOI: 10.9790/0661-17366469 www.iosrjournals.org 69 | Page
VII. Conclusion
In proposed work taking more than one real-time dataset and analyze and characterize the drift by
comparing EDDM and DDD method. Online Analysis will use Diversity with Drift Detection approach for
finding drift in data set. After Successfully Evaluate the result of Existing Approach, the further proposed
work will find the drift in data set with diversity also, using DDD approach. In experimental result we take two
different dataset and compare the EDDM and DDD for different dataset. So, from the result we can conclude
that DDD gives better result than EDDM in finding the drift. And using that approach accuracy of detecting drift
will increase compare to existing method. Diversity with drift detection has also good strength not in the favor
of false alarms. As and when they occur, its precision is good due to the usage of old ensembles. So, Diversity
with Drift Detection is precise both in the existence and in the nonexistence of drifts compared to EDDM.
Therefore, this analysis should only be observed as the starting point for a new subfield in the concept drift
domain.
References
[1]. Manoj Kumar M V,Likewin Thomas, Annapa B, “Phenomenon Of Concept Drift From Process Mining Insight”Department Of
CSE,NITK,978-1-4799-2572-8/14/$31.00 2014 IEEE.
[2]. Stb Prof. Dr. Nick Gehrke Nordakademie “Process Mining” Chair For Information Systems Köllner Chaussee 11,Michael Werner,
Dipl.-Wirt.-Inf. University Of Hamburg Chair For Information Systems , Max-Brauer-Allee 60 D-22765 Hamburg.
[3]. R. P. Jagadeesh Chandra Bose, Wil M. P. Van Der Aalst, Indr˙E Žliobait˙E, And Mykola Pechenizkiy, “Dealing With Concept Drifts
In Process Mining”, Ieee Transactions On Neural Networks And Learning Systems, Vol. 25, No. 1, January 2014.
[4]. Online Techniques For Dealing With Concept Drift In Process Mining, Josep Carmona And Ricard Gavalda, Universitat Polit_Ecnica
De Catalunya Barcelona, Spain 2013.
[5]. J. Carmona And R. Gavaldà, “Online Techniques For Dealing With Concept Drift In Process Mining,” In Proc. Int. Conf. IDA, 2012,
Pp. 90–102.

More Related Content

What's hot

Multimodal Biometrics Recognition by Dimensionality Diminution Method
Multimodal Biometrics Recognition by Dimensionality Diminution MethodMultimodal Biometrics Recognition by Dimensionality Diminution Method
Multimodal Biometrics Recognition by Dimensionality Diminution Method
IJERA Editor
 
presentation_btp
presentation_btppresentation_btp
presentation_btp
Anshul Goyal, EIT
 
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal DetectionError Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
Ryo Hayakawa
 
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
ijaia
 
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
ijcseit
 
CSC446: Pattern Recognition (LN8)
CSC446: Pattern Recognition (LN8)CSC446: Pattern Recognition (LN8)
CSC446: Pattern Recognition (LN8)
Mostafa G. M. Mostafa
 
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
csandit
 
EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171
Yaxin Liu
 
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
IJRES Journal
 
Kaggle talk series top 0.2% kaggler on amazon employee access challenge
Kaggle talk series  top 0.2% kaggler on amazon employee access challengeKaggle talk series  top 0.2% kaggler on amazon employee access challenge
Kaggle talk series top 0.2% kaggler on amazon employee access challenge
Vivian S. Zhang
 
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
IOSR Journals
 
The caret package is a unified interface to a large number of predictive mode...
The caret package is a unified interface to a large number of predictive mode...The caret package is a unified interface to a large number of predictive mode...
The caret package is a unified interface to a large number of predictive mode...
odsc
 

What's hot (12)

Multimodal Biometrics Recognition by Dimensionality Diminution Method
Multimodal Biometrics Recognition by Dimensionality Diminution MethodMultimodal Biometrics Recognition by Dimensionality Diminution Method
Multimodal Biometrics Recognition by Dimensionality Diminution Method
 
presentation_btp
presentation_btppresentation_btp
presentation_btp
 
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal DetectionError Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
Error Recovery with Relaxed MAP Estimation for Massive MIMO Signal Detection
 
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
The Application Of Bayes Ying-Yang Harmony Based Gmms In On-Line Signature Ve...
 
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
 
CSC446: Pattern Recognition (LN8)
CSC446: Pattern Recognition (LN8)CSC446: Pattern Recognition (LN8)
CSC446: Pattern Recognition (LN8)
 
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
EFFICIENT USE OF HYBRID ADAPTIVE NEURO-FUZZY INFERENCE SYSTEM COMBINED WITH N...
 
EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171
 
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
 
Kaggle talk series top 0.2% kaggler on amazon employee access challenge
Kaggle talk series  top 0.2% kaggler on amazon employee access challengeKaggle talk series  top 0.2% kaggler on amazon employee access challenge
Kaggle talk series top 0.2% kaggler on amazon employee access challenge
 
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
A Novel Learning Formulation in a unified Min-Max Framework for Computer Aide...
 
The caret package is a unified interface to a large number of predictive mode...
The caret package is a unified interface to a large number of predictive mode...The caret package is a unified interface to a large number of predictive mode...
The caret package is a unified interface to a large number of predictive mode...
 

Viewers also liked

Implementing Automatic Callback Using Session Initiation Protocol
Implementing Automatic Callback Using Session Initiation ProtocolImplementing Automatic Callback Using Session Initiation Protocol
Implementing Automatic Callback Using Session Initiation Protocol
IOSR Journals
 
Role of the Various Functionaries in Regular Surveillance
Role of the Various Functionaries in Regular SurveillanceRole of the Various Functionaries in Regular Surveillance
Role of the Various Functionaries in Regular Surveillance
IOSR Journals
 
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm SystemAnalysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
IOSR Journals
 
Design and implementation of Parallel Prefix Adders using FPGAs
Design and implementation of Parallel Prefix Adders using FPGAsDesign and implementation of Parallel Prefix Adders using FPGAs
Design and implementation of Parallel Prefix Adders using FPGAs
IOSR Journals
 
I010246467
I010246467I010246467
I010246467
IOSR Journals
 
H1303055462
H1303055462H1303055462
H1303055462
IOSR Journals
 
N0102196100
N0102196100N0102196100
N0102196100
IOSR Journals
 
A0460109
A0460109A0460109
A0460109
IOSR Journals
 
C012411728
C012411728C012411728
C012411728
IOSR Journals
 
T130304118126
T130304118126T130304118126
T130304118126
IOSR Journals
 
J012658388
J012658388J012658388
J012658388
IOSR Journals
 
R130301114118
R130301114118R130301114118
R130301114118
IOSR Journals
 
Influence of soil texture and bed preparation on growth performance in Plectr...
Influence of soil texture and bed preparation on growth performance in Plectr...Influence of soil texture and bed preparation on growth performance in Plectr...
Influence of soil texture and bed preparation on growth performance in Plectr...
IOSR Journals
 
D0462530
D0462530D0462530
D0462530
IOSR Journals
 
G017644454
G017644454G017644454
G017644454
IOSR Journals
 
Architecture and Evaluation on Cooperative Caching In Wireless P2P
Architecture and Evaluation on Cooperative Caching In Wireless  P2PArchitecture and Evaluation on Cooperative Caching In Wireless  P2P
Architecture and Evaluation on Cooperative Caching In Wireless P2P
IOSR Journals
 
I0665256
I0665256I0665256
I0665256
IOSR Journals
 
Count based Secured Hash Algorithm.
Count based Secured Hash Algorithm.Count based Secured Hash Algorithm.
Count based Secured Hash Algorithm.
IOSR Journals
 
Correlation Coefficient Based Average Textual Similarity Model for Informatio...
Correlation Coefficient Based Average Textual Similarity Model for Informatio...Correlation Coefficient Based Average Textual Similarity Model for Informatio...
Correlation Coefficient Based Average Textual Similarity Model for Informatio...
IOSR Journals
 
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
IOSR Journals
 

Viewers also liked (20)

Implementing Automatic Callback Using Session Initiation Protocol
Implementing Automatic Callback Using Session Initiation ProtocolImplementing Automatic Callback Using Session Initiation Protocol
Implementing Automatic Callback Using Session Initiation Protocol
 
Role of the Various Functionaries in Regular Surveillance
Role of the Various Functionaries in Regular SurveillanceRole of the Various Functionaries in Regular Surveillance
Role of the Various Functionaries in Regular Surveillance
 
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm SystemAnalysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
Analysis of Peak to Average Power Ratio Reduction Techniques in Sfbc Ofdm System
 
Design and implementation of Parallel Prefix Adders using FPGAs
Design and implementation of Parallel Prefix Adders using FPGAsDesign and implementation of Parallel Prefix Adders using FPGAs
Design and implementation of Parallel Prefix Adders using FPGAs
 
I010246467
I010246467I010246467
I010246467
 
H1303055462
H1303055462H1303055462
H1303055462
 
N0102196100
N0102196100N0102196100
N0102196100
 
A0460109
A0460109A0460109
A0460109
 
C012411728
C012411728C012411728
C012411728
 
T130304118126
T130304118126T130304118126
T130304118126
 
J012658388
J012658388J012658388
J012658388
 
R130301114118
R130301114118R130301114118
R130301114118
 
Influence of soil texture and bed preparation on growth performance in Plectr...
Influence of soil texture and bed preparation on growth performance in Plectr...Influence of soil texture and bed preparation on growth performance in Plectr...
Influence of soil texture and bed preparation on growth performance in Plectr...
 
D0462530
D0462530D0462530
D0462530
 
G017644454
G017644454G017644454
G017644454
 
Architecture and Evaluation on Cooperative Caching In Wireless P2P
Architecture and Evaluation on Cooperative Caching In Wireless  P2PArchitecture and Evaluation on Cooperative Caching In Wireless  P2P
Architecture and Evaluation on Cooperative Caching In Wireless P2P
 
I0665256
I0665256I0665256
I0665256
 
Count based Secured Hash Algorithm.
Count based Secured Hash Algorithm.Count based Secured Hash Algorithm.
Count based Secured Hash Algorithm.
 
Correlation Coefficient Based Average Textual Similarity Model for Informatio...
Correlation Coefficient Based Average Textual Similarity Model for Informatio...Correlation Coefficient Based Average Textual Similarity Model for Informatio...
Correlation Coefficient Based Average Textual Similarity Model for Informatio...
 
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
The Phase Theory towards the Unification of the Forces of Nature the Heart Be...
 

Similar to I017366469

Learning of DDD
Learning of DDDLearning of DDD
Learning of DDD
irjes
 
D017122026
D017122026D017122026
D017122026
IOSR Journals
 
Ijariie1129
Ijariie1129Ijariie1129
Ijariie1129
IJARIIE JOURNAL
 
Performance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsPerformance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning Algorithms
Dinusha Dilanka
 
Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...
IJECEIAES
 
On Tracking Behavior of Streaming Data: An Unsupervised Approach
On Tracking Behavior of Streaming Data: An Unsupervised ApproachOn Tracking Behavior of Streaming Data: An Unsupervised Approach
On Tracking Behavior of Streaming Data: An Unsupervised Approach
Waqas Tariq
 
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Mumbai Academisc
 
Evaluating Classification Algorithms Applied To Data Streams Esteban Donato
Evaluating Classification Algorithms Applied To Data Streams   Esteban DonatoEvaluating Classification Algorithms Applied To Data Streams   Esteban Donato
Evaluating Classification Algorithms Applied To Data Streams Esteban Donato
Esteban Donato
 
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
IJERA Editor
 
Vol 9 No 1 - January 2014
Vol 9 No 1 - January 2014Vol 9 No 1 - January 2014
Vol 9 No 1 - January 2014
ijcsbi
 
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
IJITCA Journal
 
Progressive Duplicate Detection
Progressive Duplicate DetectionProgressive Duplicate Detection
Progressive Duplicate Detection
1crore projects
 
Scheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic AlgorithmScheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic Algorithm
iosrjce
 
M017327378
M017327378M017327378
M017327378
IOSR Journals
 
Traffic Outlier Detection by Density-Based Bounded Local Outlier Factors
Traffic Outlier Detection by Density-Based Bounded Local Outlier FactorsTraffic Outlier Detection by Density-Based Bounded Local Outlier Factors
Traffic Outlier Detection by Density-Based Bounded Local Outlier Factors
ITIIIndustries
 
report
reportreport
report
Arthur He
 
An automatic test data generation for data flow
An automatic test data generation for data flowAn automatic test data generation for data flow
An automatic test data generation for data flow
WafaQKhan
 
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
Xin-She Yang
 
Techniques in marketing research
Techniques in marketing researchTechniques in marketing research
Techniques in marketing research
Sunny Bose
 
Medical diagnosis classification
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classification
csandit
 

Similar to I017366469 (20)

Learning of DDD
Learning of DDDLearning of DDD
Learning of DDD
 
D017122026
D017122026D017122026
D017122026
 
Ijariie1129
Ijariie1129Ijariie1129
Ijariie1129
 
Performance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsPerformance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning Algorithms
 
Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...Comparative study of optimization algorithms on convolutional network for aut...
Comparative study of optimization algorithms on convolutional network for aut...
 
On Tracking Behavior of Streaming Data: An Unsupervised Approach
On Tracking Behavior of Streaming Data: An Unsupervised ApproachOn Tracking Behavior of Streaming Data: An Unsupervised Approach
On Tracking Behavior of Streaming Data: An Unsupervised Approach
 
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
Bra a bidirectional routing abstraction for asymmetric mobile ad hoc networks...
 
Evaluating Classification Algorithms Applied To Data Streams Esteban Donato
Evaluating Classification Algorithms Applied To Data Streams   Esteban DonatoEvaluating Classification Algorithms Applied To Data Streams   Esteban Donato
Evaluating Classification Algorithms Applied To Data Streams Esteban Donato
 
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
An Efficient Frame Embedding Using Haar Wavelet Coefficients And Orthogonal C...
 
Vol 9 No 1 - January 2014
Vol 9 No 1 - January 2014Vol 9 No 1 - January 2014
Vol 9 No 1 - January 2014
 
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
APPLYING DYNAMIC MODEL FOR MULTIPLE MANOEUVRING TARGET TRACKING USING PARTICL...
 
Progressive Duplicate Detection
Progressive Duplicate DetectionProgressive Duplicate Detection
Progressive Duplicate Detection
 
Scheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic AlgorithmScheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic Algorithm
 
M017327378
M017327378M017327378
M017327378
 
Traffic Outlier Detection by Density-Based Bounded Local Outlier Factors
Traffic Outlier Detection by Density-Based Bounded Local Outlier FactorsTraffic Outlier Detection by Density-Based Bounded Local Outlier Factors
Traffic Outlier Detection by Density-Based Bounded Local Outlier Factors
 
report
reportreport
report
 
An automatic test data generation for data flow
An automatic test data generation for data flowAn automatic test data generation for data flow
An automatic test data generation for data flow
 
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
Accelerated Particle Swarm Optimization and Support Vector Machine for Busine...
 
Techniques in marketing research
Techniques in marketing researchTechniques in marketing research
Techniques in marketing research
 
Medical diagnosis classification
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classification
 

More from IOSR Journals

A011140104
A011140104A011140104
A011140104
IOSR Journals
 
M0111397100
M0111397100M0111397100
M0111397100
IOSR Journals
 
L011138596
L011138596L011138596
L011138596
IOSR Journals
 
K011138084
K011138084K011138084
K011138084
IOSR Journals
 
J011137479
J011137479J011137479
J011137479
IOSR Journals
 
I011136673
I011136673I011136673
I011136673
IOSR Journals
 
G011134454
G011134454G011134454
G011134454
IOSR Journals
 
H011135565
H011135565H011135565
H011135565
IOSR Journals
 
F011134043
F011134043F011134043
F011134043
IOSR Journals
 
E011133639
E011133639E011133639
E011133639
IOSR Journals
 
D011132635
D011132635D011132635
D011132635
IOSR Journals
 
C011131925
C011131925C011131925
C011131925
IOSR Journals
 
B011130918
B011130918B011130918
B011130918
IOSR Journals
 
A011130108
A011130108A011130108
A011130108
IOSR Journals
 
I011125160
I011125160I011125160
I011125160
IOSR Journals
 
H011124050
H011124050H011124050
H011124050
IOSR Journals
 
G011123539
G011123539G011123539
G011123539
IOSR Journals
 
F011123134
F011123134F011123134
F011123134
IOSR Journals
 
E011122530
E011122530E011122530
E011122530
IOSR Journals
 
D011121524
D011121524D011121524
D011121524
IOSR Journals
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
saastr
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
Pravash Chandra Das
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
GDSC PJATK
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
saastr
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
alexjohnson7307
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Tosin Akinosho
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 

Recently uploaded (20)

Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Operating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptxOperating System Used by Users in day-to-day life.pptx
Operating System Used by Users in day-to-day life.pptx
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
 
Monitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdfMonitoring and Managing Anomaly Detection on OpenShift.pdf
Monitoring and Managing Anomaly Detection on OpenShift.pdf
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 

I017366469

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 3, Ver. VI (May – Jun. 2015), PP 64-69 www.iosrjournals.org DOI: 10.9790/0661-17366469 www.iosrjournals.org 64 | Page Concept Drift for obtaining Accurate Insight on Process Execution Vidya N.Chavada1 , Pratik Kumar2 1 M.E Student, Department of CSE, PIET, Vadodara, India 2Asst. Prof.,Department of CSE, PIET, Vadodara, India Abstract: Most business processes update with respect time, existing or old process mining strategies used to resolve those processes when they are under the stable position. My attempt is to improve the existing Drift Detection in complex Datasets. Organizations would be interested in discovering the progression of change. There are other applications such as deriving a configurable model for the process change. Online learning algorithms manage concept drifts in process. There are many dissimilar diversity levels in learning machines are needed for keep high generalization. Motivated by this concept, propose a new online learning model named as Diversity for Dealing with Drifts (DDD). By Comparing DDD with other method EDDM conclude that DDD gives higher accuracy. It keeps ensembles with many dissimilar diversity levels and can achieve good accuracy than EDDM. Moreover, it is strong and precise when there are false positive drift detections occur than EDDM. DDD always performed drift handling under many different situations, with very low errors. Keywords: Ensemble learning, Diversity, Concept Drift, DDD. I. Introduction The Although most business processes change with time, existing process mining techniques tend to analyze these processes as if they are in a steady state [3].Processes may be modifying unexpectedly or slowly. There is a situation when the relation between the input data and the output variable, changes with time in unexpected ways which is called concept drift and as in today’s dynamic and demanding business, it requires detecting it during online analysis as it although most business processes modify with time [4]. Although detecting concept drifts is important for offline analysis, it is also application oriented and interested to detect changes in near real time (online analysis). Online learning has been showing to be very useful for a growing number of applications in which training data are available continuously in time (streams of data). Examples of such applications are industrial process control, computer security, intelligent user interfaces, market-basket analysis, information filtering. [5] In this paper used EDDM (Early Drift Detection Method) and compare it with my proposed method DDD.EDDM works on thought that the space between two successive errors increases.so, in this distance is analyze and if it’s reduces according to predefined constant then it’s measured as concept drift. Diversity with drift detection stored ensembles with altered diversity levels and it is use to attain good precision than EDDM. It is very strong, than any other drift handling techniques in accuracy when there is any false positive change detections occur. DDD used in many change handling approaches in many diverse situation, with very less errors. In the following section Flowchart of proposed system, Algorithm, experiment result of the system will explain. II. Flow Chart Of Proposed System Proposed system for dealing with concept drift consists of the following modules. There are many approaches proposed to handle concept drift. Here I have used EDDM and based upon that proposed the DDD method. 2.1. Dataset Selection and Extraction: in this first of all dataset is selected. In EDDM kc3 dataset and in DDD mc1 dataset is used. In EDDM method I have used parameters like α and β, Where α > β. Value for both parameters determined whether the warning level is triggered and whether the concept drift id detect or not. While in DDD parameters used are pl (low diversity), ph (high diversity), W (multi pliers constant for the weight old low diversity ensemble) default value is (W=1), pd (parameter for drift detection method). 2.2. Calculation of Accuracy: after extracting dataset accuracy of drift detection is calculated for both EDDM and DDD. Both Approaches use some measure related to the accuracy to detect drifts. I have included measures like TP rate, FP rate, precision, and recall, F-measure for false and true class. And also weighted average is calculated. The rule used to obtain the accuracy on time step t is presented in
  • 2. Concept Drift for obtaining Accurate Insight on Process Execution DOI: 10.9790/0661-17366469 www.iosrjournals.org 65 | Page Figure. 1: Architecture of DDD 2.3. Compare Accuracy: After that comparison of accuracy of EDDM and DDD is done. And based upon that DDD gives more accuracy than EDDM in both dataset. III. Description Diversity with drift detection is in two modes: before the detection of change and after detection of change. We have used a change detection method, because it permits instant behaviour of changes when they are found. So, if the parameters of the change detection method are coping to detect change the first possible and the approach is considered to be strong to detect the false alarms, we may attain quick adaptation to novel concepts. Online analysis is viewing to be extremely helpful for an increasing number of applications in that training information are obtainable constantly with respect to time. Example of such applications is process control in organization, security of computer, market-basket analysis, filtering of information. In online analysis algorithms it process each training example one time “when coming” with no need of storage space. In this work we have done a method for detecting concept drift, even in the case of slow gradual change. It is based on the estimated distribution of the distance between classification errors.
  • 3. Concept Drift for obtaining Accurate Insight on Process Execution DOI: 10.9790/0661-17366469 www.iosrjournals.org 66 | Page IV. Algorithm Inputs: ď‚— multiplier constant W for the weight of the old low diversity ensemble; ď‚— online ensemble learning algorithm EnsembleLearning; ď‚— parameters for ensemble learning with low diversity pl and high diversity ph; ď‚— .drift detection method DetectDrift; ď‚— parameters for drift detection method pd; ď‚— data stream D; 1: mode < - before drift 2: hnl <- new ensemble /*new low diversity*/ 3: hnh < - new ensemble /*new high diversity*/ 4: hol < - hoh < - null /*old low and high diversity*/ 5: accol < - accoh < - accnl < - accnh < - 0 /*accuracies*/ 6: stdol < - stdoh < - stdnl < - stdnh <- 0 /*standard deviations*/ 7: while true do 8: d < - next example from D 9: if mode == before drift then 10: prediction hnl(d) 11: else 12: sumacc < - accnl + accol* W +accoh 13: wnl =accnl/sumacc 14: wol = accol *W/sumacc 15: woh = accoh/sumacc 16: prediction<- WeightedMajority(hnl(d), hol(d),hoh(d), wnl, wol, woh) 17: Update(accnl, stdnl, hnl, d) 18: Update(accol, stdol, hol, d) 19: Update(accoh, stdoh, hoh, d) 20: end if 21: drift<- DetectDrift(hnl, d, pd) 22: if drift == true then 23: if mode == before drift OR(mode == after drift AND accnl > accoh) then 24: hol <-hnl 25: else 26: hol<- hoh 27: end if 28: hoh<- hnh 29: hnl <- new ensemble 30: hnh <- new ensemble 31: accol <- accoh <- accnl <- accnh <- 0 32: stdol <- stdoh <- stdnl <- stdnh <- 0 33: mode <- after drift 34: end if 35: if mode == after drift then 36: if accnl > accoh AND accnl > accol then 37: mode<- before drift 38: else 39: if accoh - stdoh > accnl +stdnl AND accoh - stdoh > accol + stdol then 40: hnl<- hoh 41: accnl<- accoh 42: mode<- before drift 43: end if 44: EnsembleLearning(hnl; d; pl) 45: EnsembleLearning(hnh; d; ph) 46: if mode == after drift then 47: EnsembleLearning(hol; d; pl) 48: EnsembleLearning(hoh; d; pl) 49: end if 50: if mode == before drift then
  • 4. Concept Drift for obtaining Accurate Insight on Process Execution DOI: 10.9790/0661-17366469 www.iosrjournals.org 67 | Page 51: Output hnl, prediction 52: else 53: Output hnl; hol; hoh; wnl; wol; woh, prediction Before a detection of drift, the learning system is combined with two ensembles: lower diversity (hnl) ensemble and higher diversity (hnh) ensemble. Both hnl and hnh are trained with input samples (lines 44 and 45), here we are considering only low hnl ensemble for predictions of the system (line 10). Hnh is not use for prediction of the system. Because it’s accuracy is low on the new concept. A change detection method for monitoring the hnl is used (line 21). After a detection of drift, hnl and hnh is generated (lines 29 and 30). Before the drift is detected Low and high diversity ensembles are reserved and treated diversity Ensembles as old low and old high (lines 24 and 28). Learning is done by Both the old and the new ensembles (lines 44-48) and then calculations of the system are determined by the weighted majority vote of the output of 1) hol, 2) hnl, and 3) hoh (lines 12-16). The weights are proportional to the accuracy since the last detection of drift until the preceding time step (lines 13-15). The weight of the hol ensemble is multiplied by a constant W (line 15), that controlling between strength to false alarms detection and precision in the existence of concept drifts, and then normalization of weights are performed. If two successive detections of drift occur, the hol ensemble after the detection of the second drift can be either the equal as the hoh learning with low diversity after the detection of the first drift or the ensemble equivalent to the hnl after the first detection of the drift, depends on which of them more precise (lines 24 and 26). All the four ensembles are stored until either the condition 36 or the condition 39 is fulfilled. When considering the accuracies whether the hoh ensemble is better than the others are reduced/summed from their standard deviations. While returning back to the mode earlier to drift, either the hoh or the hnl ensemble becomes the low diversity ensemble used in the mode earlier to detection of drift, depending on which of them is more precise. (lines 36-43). Diversity in Detection Drift is considered to use data well-read from the old theory in order to help the learning of the original theory by training a hoh ensemble with low diversity on the new theory. V. Experimental Result In existing system for evaluating the concept drift in data set, manually data set of different electronic hardware items is taken. Figure. 2: Concept Drift in Product in each year So, as shown in Fig..2 it’s offline analysis of concept drift in artificial dataset. In this characterization of the concept drift is not done. In proposed system we have taken PROMISE data set in order to encourage repeatable, verifiable, refutable, and/or improvable predictive models of Diversity for Dealing with Drifts. Two real time data ser mc1.arff and kc3.arff is taken. By performing evaluation of both dataset in to the system accuracy achieved by DDD and EDDM for different dataset is shown in following table:
  • 5. Concept Drift for obtaining Accurate Insight on Process Execution DOI: 10.9790/0661-17366469 www.iosrjournals.org 68 | Page Table 1: Comparison Table EDDM and DDD Figure .3: Comparison of EDDM and DDD for one dataset based on accuracy Figure .4: comparison of EDDM and DDD for two different dataset based on accuracy. VI. Comparison Analysis Of Proposed And Existing System After Successfully Evaluate the result of Proposed Approach with compare to Existing Approach, we will see a comparative study of both system. Table 2: Comparison Table of Proposed and Existing system Proposed System Existing System ď‚· Its online analysis because I have used real-time dataset and then compare dataset for EDDM and DDD method. ď‚· Its offline analysis because I have use artificial data. ď‚· Real time dataset is used. ď‚· Data set available in order to encourage repeatable, verifiable, and/or improvable predictive models of Diversity for Dealing with Drifts. ď‚· More than one dataset is used. ď‚· Artificial dataset is used. ď‚· And manually calculated the drift in product and year wise. ď‚· One dataset is used ď‚· It will automatically find false positive and false negative drift. Precision is also measure. ď‚· Put manually drift and then check ď‚· Accuracy of EDDM and DDD is calculated. And DDD gives more accuracy than EDDM. ď‚· Accuracy for drift is not calculated. ď‚· Characterization is done in graph format for checking drift. ď‚· Diversity is also considered. ď‚· Characterization is not done.
  • 6. Concept Drift for obtaining Accurate Insight on Process Execution DOI: 10.9790/0661-17366469 www.iosrjournals.org 69 | Page VII. Conclusion In proposed work taking more than one real-time dataset and analyze and characterize the drift by comparing EDDM and DDD method. Online Analysis will use Diversity with Drift Detection approach for finding drift in data set. After Successfully Evaluate the result of Existing Approach, the further proposed work will find the drift in data set with diversity also, using DDD approach. In experimental result we take two different dataset and compare the EDDM and DDD for different dataset. So, from the result we can conclude that DDD gives better result than EDDM in finding the drift. And using that approach accuracy of detecting drift will increase compare to existing method. Diversity with drift detection has also good strength not in the favor of false alarms. As and when they occur, its precision is good due to the usage of old ensembles. So, Diversity with Drift Detection is precise both in the existence and in the nonexistence of drifts compared to EDDM. Therefore, this analysis should only be observed as the starting point for a new subfield in the concept drift domain. References [1]. Manoj Kumar M V,Likewin Thomas, Annapa B, “Phenomenon Of Concept Drift From Process Mining Insight”Department Of CSE,NITK,978-1-4799-2572-8/14/$31.00 2014 IEEE. [2]. Stb Prof. Dr. Nick Gehrke Nordakademie “Process Mining” Chair For Information Systems Köllner Chaussee 11,Michael Werner, Dipl.-Wirt.-Inf. University Of Hamburg Chair For Information Systems , Max-Brauer-Allee 60 D-22765 Hamburg. [3]. R. P. Jagadeesh Chandra Bose, Wil M. P. Van Der Aalst, IndrË™E Ĺ˝liobaitË™E, And Mykola Pechenizkiy, “Dealing With Concept Drifts In Process Mining”, Ieee Transactions On Neural Networks And Learning Systems, Vol. 25, No. 1, January 2014. [4]. Online Techniques For Dealing With Concept Drift In Process Mining, Josep Carmona And Ricard Gavalda, Universitat Polit_Ecnica De Catalunya Barcelona, Spain 2013. [5]. J. Carmona And R. GavaldĂ , “Online Techniques For Dealing With Concept Drift In Process Mining,” In Proc. Int. Conf. IDA, 2012, Pp. 90–102.