SlideShare a Scribd company logo
1 of 6
Download to read offline
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 MethodIJERA Editor
 
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 DetectionRyo 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
 
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_8448347171Yaxin 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 challengeVivian 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

Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...
Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...
Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...Bjorn Fripon
 
GOAexpo 2017 ATTEND - LEARN - EXHIBIT
GOAexpo 2017   ATTEND - LEARN - EXHIBITGOAexpo 2017   ATTEND - LEARN - EXHIBIT
GOAexpo 2017 ATTEND - LEARN - EXHIBITDepo Consulting
 
Curso Inicio de Word
Curso Inicio de WordCurso Inicio de Word
Curso Inicio de WordRegina Peña
 
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...iosrjce
 
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...iosrjce
 
20150923 De kracht van storytelling - LECTRIC Trend Event Digital Storytelling
20150923 De kracht van storytelling  - LECTRIC Trend Event Digital Storytelling 20150923 De kracht van storytelling  - LECTRIC Trend Event Digital Storytelling
20150923 De kracht van storytelling - LECTRIC Trend Event Digital Storytelling Paulus Veltman
 
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIE
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIEFACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIE
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIEMaciej Dziedzic
 
Tecnicas comunicacion asertiva
Tecnicas comunicacion asertivaTecnicas comunicacion asertiva
Tecnicas comunicacion asertivasupervegallevis
 

Viewers also liked (16)

Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...
Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...
Digitaal in Genk? Over strategie, interessegroepen en uitvoering in de digita...
 
GOAexpo 2017 ATTEND - LEARN - EXHIBIT
GOAexpo 2017   ATTEND - LEARN - EXHIBITGOAexpo 2017   ATTEND - LEARN - EXHIBIT
GOAexpo 2017 ATTEND - LEARN - EXHIBIT
 
Curso Inicio de Word
Curso Inicio de WordCurso Inicio de Word
Curso Inicio de Word
 
Article_M2
Article_M2Article_M2
Article_M2
 
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...
Study of Serum Omentin-1 in Relation to Insulin Resistance in Type II Diabete...
 
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...
An Evaluation of Partnerships That Exist Between Statutory and Voluntary Orga...
 
Cloud Computing-2015-12-15
Cloud Computing-2015-12-15Cloud Computing-2015-12-15
Cloud Computing-2015-12-15
 
Presentación Metáfora Panamá
Presentación Metáfora PanamáPresentación Metáfora Panamá
Presentación Metáfora Panamá
 
Planejamento anual curriculo
Planejamento anual curriculoPlanejamento anual curriculo
Planejamento anual curriculo
 
20150923 De kracht van storytelling - LECTRIC Trend Event Digital Storytelling
20150923 De kracht van storytelling  - LECTRIC Trend Event Digital Storytelling 20150923 De kracht van storytelling  - LECTRIC Trend Event Digital Storytelling
20150923 De kracht van storytelling - LECTRIC Trend Event Digital Storytelling
 
Trendy i newsy w Employer Branding
Trendy i newsy w Employer BrandingTrendy i newsy w Employer Branding
Trendy i newsy w Employer Branding
 
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIE
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIEFACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIE
FACEBOOK ADS: FORMATY REKLAMOWE I ICH ZASTOSOWANIE
 
Riesgos psicosociales
Riesgos psicosocialesRiesgos psicosociales
Riesgos psicosociales
 
Tecnicas comunicacion asertiva
Tecnicas comunicacion asertivaTecnicas comunicacion asertiva
Tecnicas comunicacion asertiva
 
Angular measurement for surveying
Angular measurement for surveyingAngular measurement for surveying
Angular measurement for surveying
 
Leren zichtbaar maken congresfolder 2016
Leren zichtbaar maken congresfolder 2016Leren zichtbaar maken congresfolder 2016
Leren zichtbaar maken congresfolder 2016
 

Similar to Concept Drift for obtaining Accurate Insight on Process Execution

Learning of DDD
Learning of DDDLearning of DDD
Learning of DDDirjes
 
Performance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsPerformance Comparision of Machine Learning Algorithms
Performance Comparision of Machine Learning AlgorithmsDinusha 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 ApproachWaqas 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 DonatoEsteban 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 2014ijcsbi
 
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 Detection1crore projects
 
Scheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic AlgorithmScheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic Algorithmiosrjce
 
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 FactorsITIIIndustries
 
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 flowWafaQKhan
 
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 researchSunny Bose
 
Medical diagnosis classification
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classificationcsandit
 

Similar to Concept Drift for obtaining Accurate Insight on Process Execution (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
 
M017327378
M017327378M017327378
M017327378
 
Scheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic AlgorithmScheduling Using Multi Objective Genetic Algorithm
Scheduling Using Multi Objective Genetic Algorithm
 
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 iosrjce

An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...iosrjce
 
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?iosrjce
 
Childhood Factors that influence success in later life
Childhood Factors that influence success in later lifeChildhood Factors that influence success in later life
Childhood Factors that influence success in later lifeiosrjce
 
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...iosrjce
 
Customer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in DubaiCustomer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in Dubaiiosrjce
 
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...iosrjce
 
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model ApproachConsumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model Approachiosrjce
 
Student`S Approach towards Social Network Sites
Student`S Approach towards Social Network SitesStudent`S Approach towards Social Network Sites
Student`S Approach towards Social Network Sitesiosrjce
 
Broadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeBroadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeiosrjce
 
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...iosrjce
 
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...iosrjce
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladeshiosrjce
 
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...iosrjce
 
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...iosrjce
 
Media Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & ConsiderationMedia Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & Considerationiosrjce
 
Customer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyCustomer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyiosrjce
 
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...iosrjce
 
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...iosrjce
 
Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...iosrjce
 
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...iosrjce
 

More from iosrjce (20)

An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...
 
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
 
Childhood Factors that influence success in later life
Childhood Factors that influence success in later lifeChildhood Factors that influence success in later life
Childhood Factors that influence success in later life
 
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
 
Customer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in DubaiCustomer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in Dubai
 
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
 
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model ApproachConsumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
 
Student`S Approach towards Social Network Sites
Student`S Approach towards Social Network SitesStudent`S Approach towards Social Network Sites
Student`S Approach towards Social Network Sites
 
Broadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeBroadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperative
 
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
 
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
 
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
 
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
 
Media Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & ConsiderationMedia Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & Consideration
 
Customer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyCustomer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative study
 
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...
 
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
 
Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...
 
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
 

Recently uploaded

result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 

Recently uploaded (20)

(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 

Concept Drift for obtaining Accurate Insight on Process Execution

  • 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.