SlideShare a Scribd company logo
1 of 4
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 15, Issue 4 (Nov. - Dec. 2013), PP 20-23
www.iosrjournals.org
www.iosrjournals.org 20 | Page
Mining Top-k Closed Sequential Patterns in Sequential Databases
K.Sohini
1
, Mr.V.Purushothama Raju
2
1
Dept of CSE, Shri Vishnu Engineering College for Women, Bhimavaram, A.P, India
2
Associate Professor, Dept of CSE, Shri Vishnu Engineering College for Women, Bhimavaram, A.P, India
Abstract: In data mining community, sequential pattern mining has been studied extensively. Most studies
require the specification of minimum support threshold to mine the sequential patterns. However, it is difficult
for users to provide an appropriate threshold in practice. To overcome this, we propose mining top-k closed
sequential patterns of length no less than min_l, where k is the number of closed sequential patterns to be
mined, and min_l is the minimum length of each pattern. We mine closed patterns since they are solid
representations of frequent patterns.
Keywords: closed pattern, data mining, sequential pattern, scalability
I. Introduction
Sequential pattern mining is an important data mining task that has been studied extensively. Given a
set of sequences, which consists of a list of itemsets, and given a user-specified minimum support threshold
(min_support), sequential pattern mining is to find all frequent subsequences whose frequency is no less than
min support. This mining task leads to the following two problems that may hinder its popular use.
First, sequential pattern mining often generates an exponential number of patterns, which is unavoidable when
the database consists of long frequent sequences. The similar phenomena also exist in itemset and graph patterns
when the patterns are large. For example, assume the database contains a frequent sequence <(a1) (a2)…(a100)>,
it will generate 2100
-1 frequent subsequences. It is very possible some subsequences share the exact same
support with this long sequence, which are essentially redundant patterns.
Second, setting min_support is a subtle task: A too small value may lead to the generation of
thousands of patterns, whereas a too big one may lead to no answer found. To come up with an appropriate
min_support, one needs to have prior knowledge about the mining query and the task specific data, and be able
to guess beforehand how many patterns will be generated with a particular threshold.
A solution to the first problem was proposed recently by Yan, et al. [1]. Their algorithm, called
CloSpan, can mine closed sequential patterns. A sequential pattern s is closed, if there exists, no super pattern of
s with the same support in the database. When the patterns were mined for closed sequences and information
lossless then the Patterns will be reduced, because it can be used to derive the complete set of sequential
patterns.
As to the second problem, a similar situation occurs in frequent itemset mining. As proposed in [3], a
good solution is to change the task of mining frequent patterns to mining top-k frequent closed patterns of
minimum length min_l, where k is the number of closed patterns to be mined, top-k refers to the k most
frequent patterns, and min_l is the minimum length of the closed patterns. This setting is also desirable in the
context of sequential pattern mining. Unfortunately, most of the techniques developed in [3] cannot be directly
applied in sequence mining, because this subsequence testing requires order matching which is more difficult
than subset testing. Moreover, the search space of sequences is much larger than that of itemsets. Nevertheless,
some ideas developed in [3] are still influential in our algorithm design.
II. Related Work
Efficient algorithms like PrefixSpan [5] SPADE[6] GSP[7] were developed for mining the sequential
patterns. As sequential pattern mining produces many patterns so closed sequential pattern mining algorithms
like CloSpan[1] , BIDE[8] were developed. All these algorithms can deliver less patterns than sequential pattern
mining, but do not lose any information. Top-k closed pattern mining will reduce the number of patterns further
by only mining the most frequent ones. As to mining the top-k patterns, CloSpan[1] and TFP [3] are the most
related. CloSpan mines the frequent closed sequential patterns while TFP discovers top-k closed itemsets.
III. Method Development
The sequential pattern mining based on the concept of projection based, is introduced (PrefixSpan[5]) it
gives some background idea. Then a new Top-k mining algorithm was introduced with background of CloSpan
and top-k.
Mining Top-k Closed Sequential Patterns in Sequential Databases
www.iosrjournals.org 21 | Page
For each discovered sequence s and its projected database Ds, it performs itemset extension and sequence-
extension recursively until all the frequent sequences with prefix s are discovered.
Given a sequence s=<t1,…..,tm> and an item a, sa means s concatenates with a
It can be I-Step extension ,si a =<t1,…..,tm U{a}>
Or S-Step extension, ss a =<t1,…..,tm ,{a}>
Example:<(ae)> is an I-Step extension of <(a)>
<(a)(c)> is an S-Step extension of <(a)>
Algorithm: Top-k mining
Input: A sequence s, a projected database Ds, minimum length min_l, histograms H and constant factor f
Output: The top-k closed sequence set k
1. if support of s is less than min_support then return
2. if length of s is equal to minimum length then
3. call Prefix Span With Support Raising (s, Ds, min_support, k ) ;
4. return;
5. scan the database Ds once and find every frequent item a such that s can be extended to sa;
6. insert a in histogram at length (l+1);
7. next_level_top_support  Get Top Support From Histogram ( f, H[l(s)+1])
8. for each a, support(a)>=next_level_top_support do
9. call Top-k mining ( sa , Dsa, min_l );
10. return;
In the prefix span it finds all the frequent sequences, they include both closed and non-closed
sequences. Since our task is to mine top-k closed sequential patterns without min_support threshold, the mining
process should start with min_support = 1, raise it progressively during the process, and then use the raised
min_support to prune the search space. As soon as at least k closed sequential patterns with length no less than
min_l are found, min_support can be set to the support of the least frequent pattern, and this min_support raising
process continues throughout the mining process. This min_support raising technique is simple and can lead to
efficient mining. There is only one algorithm CloSpan[1], that guarantees the slightest k closed sequential
patterns are found as a result min_support can be raised during the mining.
In Top-k mining, it includes if the support of s is less than min_support then return, if the length of s is equal to
min_l then call Prefix Span With Support Raising. Then scan the database Ds once and find the closed sequence
so that s can be extended to sa. Then insert a into histogram, finally if the support of a is greater or equal to
next level top support then call top-k mining.
IV. Performance evaluation
This section reports the performance testing of Top-k closed sequential patterns in large data sets. The
performance of Top-k with CloSpan is compared. The comparison is by assigning the optimal min-support to
CloSpan so that it generates the same set of top-k closed sequential patterns for specified values of k.
These were performed on a 2.10GHz Intel core duo PC with 2GB main memory, Windows XP/7 Professional.
The performance of algorithms was compared by varying k. When k is fixed, its value is set to either 50 or 500
which covers the range of typical values for this parameter. Fig.1, show the performance of sample dataset. This
dataset consists of relatively short sequences, each sequence contains 6 itemsets on average and the itemsets
have 3 items on average. This experiment shows that top-k mines the data efficiently and with minimum
running time than CloSpan. Mainly there are two reasons for better performance of Top-k in this dataset, first it
uses min_l condition to reduce short sequences during the mining process that will reduce the search space and
improves performance. Second, Top_k have efficient pattern verification and stores the result set that contains
only a small number of patterns.
Mining Top-k Closed Sequential Patterns in Sequential Databases
www.iosrjournals.org 22 | Page
a. when k=50
b. when k=500
Fig. 1: performance of clospan and top-k when k is fixed.
These were the graphs obtained when compared with sample database on clospan and top-k with constant min-l
and running time.
V. Conclusions
In this paper, we have studied the problem of mining top-k closed sequential patterns with length no
less than min_l and we proposed an efficient algorithm with the following distinct features: it implement a new
Top-k algorithm that mine the sequential patterns quickly and raise support dynamically, and it perform efficient
verification during the mining process, and it extend optimization technique together with applying the
minimum length constraint (min_l).
0
20
40
60
80
100
120
140
160
180
2 4 6 8 10 12
runningtime
min-l
clospan
top-k
Mining Top-k Closed Sequential Patterns in Sequential Databases
www.iosrjournals.org 23 | Page
References
[1] X. Yan, R. Afshar, and J. Han. CloSpan: Mining closed sequential patterns in large datasets. In May 2003, SDM, in California.
[2] C. J. Hsiao and M. J. Zaki. CHARM: An efficient algorithm for closed itemset mining. In April 2002, SDM, in Arlington,VA.
[3] J. Han, J. Wang, Y. Lu, and P. Tzvetkov. Mining topk frequent closed patterns without minimum support. In Dec. 2002, ICDM, in
Maebashi, Japan.
[4] R. Agrawal and R. Srikant. Mining sequential patterns. In Mar. 1995, ICDE, in Taipei, Taiwan.
[5] J. Pei, J. Han, B. Mortazavi-Asl, M.C. Hsu , Q. Chen,U. Dayal, and H. Pinto. PrefixSpan: Mining sequential patterns efficiently by
prefix-projected pattern growth. In April 2001, ICDE, in Germany.
[6] M. Zaki. In 2001, SPADE: An efficient algorithm for mining frequent sequences.
[7] R.Srikant and R. Agrawal. Mining sequential patterns: Generalizations and performance improvements. In Avignon, France, Mar.
1996.
[8] J.Wang and J. Han. BIDE, Efficient Mining of Frequent Closed Sequences, in 2004, ICDE.

More Related Content

What's hot

Storm 2012-03-29
Storm 2012-03-29Storm 2012-03-29
Storm 2012-03-29Ted Dunning
 
Genetic Algorithm for Process Scheduling
Genetic Algorithm for Process SchedulingGenetic Algorithm for Process Scheduling
Genetic Algorithm for Process SchedulingLogin Technoligies
 
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...PingCAP
 
Incremental Mining of Sequential Patterns Using Weights
Incremental Mining of Sequential Patterns Using WeightsIncremental Mining of Sequential Patterns Using Weights
Incremental Mining of Sequential Patterns Using WeightsIOSR Journals
 
Storm Users Group Real Time Hadoop
Storm Users Group Real Time HadoopStorm Users Group Real Time Hadoop
Storm Users Group Real Time HadoopMapR Technologies
 
One More Comments on Programming with Big Number Library in Scientific Computing
One More Comments on Programming with Big Number Library in Scientific ComputingOne More Comments on Programming with Big Number Library in Scientific Computing
One More Comments on Programming with Big Number Library in Scientific Computingtheijes
 
Graphlab Ted Dunning Clustering
Graphlab Ted Dunning  ClusteringGraphlab Ted Dunning  Clustering
Graphlab Ted Dunning ClusteringMapR Technologies
 
Deadlock Avoidance - OS
Deadlock Avoidance - OSDeadlock Avoidance - OS
Deadlock Avoidance - OSMsAnita2
 
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)Shayek Parvez
 
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...ijcsa
 
STRIP: stream learning of influence probabilities.
STRIP: stream learning of influence probabilities.STRIP: stream learning of influence probabilities.
STRIP: stream learning of influence probabilities.Albert Bifet
 
Sebastian Schelter – Distributed Machine Learing with the Samsara DSL
Sebastian Schelter – Distributed Machine Learing with the Samsara DSLSebastian Schelter – Distributed Machine Learing with the Samsara DSL
Sebastian Schelter – Distributed Machine Learing with the Samsara DSLFlink Forward
 
Large data with Scikit-learn - Boston Data Mining Meetup - Alex Perrier
Large data with Scikit-learn - Boston Data Mining Meetup  - Alex PerrierLarge data with Scikit-learn - Boston Data Mining Meetup  - Alex Perrier
Large data with Scikit-learn - Boston Data Mining Meetup - Alex PerrierAlexis Perrier
 
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016MLconf
 
FINDING FREQUENT SUBPATHS IN A GRAPH
FINDING FREQUENT SUBPATHS IN A GRAPHFINDING FREQUENT SUBPATHS IN A GRAPH
FINDING FREQUENT SUBPATHS IN A GRAPHIJDKP
 
GoodFit: Multi-Resource Packing of Tasks with Dependencies
GoodFit: Multi-Resource Packing of Tasks with DependenciesGoodFit: Multi-Resource Packing of Tasks with Dependencies
GoodFit: Multi-Resource Packing of Tasks with DependenciesDataWorks Summit/Hadoop Summit
 
Scalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceScalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceKyong-Ha Lee
 

What's hot (20)

Storm 2012-03-29
Storm 2012-03-29Storm 2012-03-29
Storm 2012-03-29
 
Genetic Algorithm for Process Scheduling
Genetic Algorithm for Process SchedulingGenetic Algorithm for Process Scheduling
Genetic Algorithm for Process Scheduling
 
Os5
Os5Os5
Os5
 
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...
[Paper Reading] Steering Query Optimizers: A Practical Take on Big Data Workl...
 
Incremental Mining of Sequential Patterns Using Weights
Incremental Mining of Sequential Patterns Using WeightsIncremental Mining of Sequential Patterns Using Weights
Incremental Mining of Sequential Patterns Using Weights
 
Storm Users Group Real Time Hadoop
Storm Users Group Real Time HadoopStorm Users Group Real Time Hadoop
Storm Users Group Real Time Hadoop
 
One More Comments on Programming with Big Number Library in Scientific Computing
One More Comments on Programming with Big Number Library in Scientific ComputingOne More Comments on Programming with Big Number Library in Scientific Computing
One More Comments on Programming with Big Number Library in Scientific Computing
 
Graphlab Ted Dunning Clustering
Graphlab Ted Dunning  ClusteringGraphlab Ted Dunning  Clustering
Graphlab Ted Dunning Clustering
 
Deadlock Avoidance - OS
Deadlock Avoidance - OSDeadlock Avoidance - OS
Deadlock Avoidance - OS
 
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)
Deadlock avoidance (Safe State, Resource Allocation Graph Algorithm)
 
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...
A Novel Framework and Policies for On-line Block of Cores Allotment for Multi...
 
CSCC-X2007
CSCC-X2007CSCC-X2007
CSCC-X2007
 
STRIP: stream learning of influence probabilities.
STRIP: stream learning of influence probabilities.STRIP: stream learning of influence probabilities.
STRIP: stream learning of influence probabilities.
 
Heapsort quick sort
Heapsort quick sortHeapsort quick sort
Heapsort quick sort
 
Sebastian Schelter – Distributed Machine Learing with the Samsara DSL
Sebastian Schelter – Distributed Machine Learing with the Samsara DSLSebastian Schelter – Distributed Machine Learing with the Samsara DSL
Sebastian Schelter – Distributed Machine Learing with the Samsara DSL
 
Large data with Scikit-learn - Boston Data Mining Meetup - Alex Perrier
Large data with Scikit-learn - Boston Data Mining Meetup  - Alex PerrierLarge data with Scikit-learn - Boston Data Mining Meetup  - Alex Perrier
Large data with Scikit-learn - Boston Data Mining Meetup - Alex Perrier
 
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016
Alex Smola, Director of Machine Learning, AWS/Amazon, at MLconf SF 2016
 
FINDING FREQUENT SUBPATHS IN A GRAPH
FINDING FREQUENT SUBPATHS IN A GRAPHFINDING FREQUENT SUBPATHS IN A GRAPH
FINDING FREQUENT SUBPATHS IN A GRAPH
 
GoodFit: Multi-Resource Packing of Tasks with Dependencies
GoodFit: Multi-Resource Packing of Tasks with DependenciesGoodFit: Multi-Resource Packing of Tasks with Dependencies
GoodFit: Multi-Resource Packing of Tasks with Dependencies
 
Scalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduceScalable and Adaptive Graph Querying with MapReduce
Scalable and Adaptive Graph Querying with MapReduce
 

Viewers also liked

Content Based Image Retrieval for Unlabelled Images
Content Based Image Retrieval for Unlabelled ImagesContent Based Image Retrieval for Unlabelled Images
Content Based Image Retrieval for Unlabelled ImagesIOSR Journals
 
Design Technique of Bandpass FIR filter using Various Window Function
Design Technique of Bandpass FIR filter using Various Window FunctionDesign Technique of Bandpass FIR filter using Various Window Function
Design Technique of Bandpass FIR filter using Various Window FunctionIOSR Journals
 
A Novel Mechanism for Low Bit-Rate Compression
A Novel Mechanism for Low Bit-Rate CompressionA Novel Mechanism for Low Bit-Rate Compression
A Novel Mechanism for Low Bit-Rate CompressionIOSR Journals
 
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, Nigeria
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, NigeriaEvaluation of Radiation Emmission from Refuse Dump Sites in Owerri, Nigeria
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, NigeriaIOSR Journals
 
Security System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologySecurity System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologyIOSR Journals
 
Ensemble Empirical Mode Decomposition: An adaptive method for noise reduction
Ensemble Empirical Mode Decomposition: An adaptive method for noise reductionEnsemble Empirical Mode Decomposition: An adaptive method for noise reduction
Ensemble Empirical Mode Decomposition: An adaptive method for noise reductionIOSR Journals
 
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.IOSR Journals
 
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) Seeds
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) SeedsOil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) Seeds
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) SeedsIOSR Journals
 
Optimized mould design of an Air cooler tank
Optimized mould design of an Air cooler tankOptimized mould design of an Air cooler tank
Optimized mould design of an Air cooler tankIOSR Journals
 
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning System
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning SystemHybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning System
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning SystemIOSR Journals
 
Neonatal Omphalitis in Iraq
Neonatal Omphalitis in IraqNeonatal Omphalitis in Iraq
Neonatal Omphalitis in IraqIOSR Journals
 
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...IOSR Journals
 
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...IOSR Journals
 
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012IOSR Journals
 
Minimization of Surface Roughness in CNC Turning Using Taguchi Method
Minimization of Surface Roughness in CNC Turning Using Taguchi MethodMinimization of Surface Roughness in CNC Turning Using Taguchi Method
Minimization of Surface Roughness in CNC Turning Using Taguchi MethodIOSR Journals
 
Public Transport Accessibility Index for Thiruvananthapuram Urban Area
Public Transport Accessibility Index for Thiruvananthapuram Urban AreaPublic Transport Accessibility Index for Thiruvananthapuram Urban Area
Public Transport Accessibility Index for Thiruvananthapuram Urban AreaIOSR Journals
 
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...IOSR Journals
 
Industrial Process Management Using LabVIEW
Industrial Process Management Using LabVIEWIndustrial Process Management Using LabVIEW
Industrial Process Management Using LabVIEWIOSR Journals
 
GMR Materials: A New Generation of Miniaturizated Technology
GMR Materials: A New Generation of Miniaturizated TechnologyGMR Materials: A New Generation of Miniaturizated Technology
GMR Materials: A New Generation of Miniaturizated TechnologyIOSR Journals
 

Viewers also liked (20)

Content Based Image Retrieval for Unlabelled Images
Content Based Image Retrieval for Unlabelled ImagesContent Based Image Retrieval for Unlabelled Images
Content Based Image Retrieval for Unlabelled Images
 
Design Technique of Bandpass FIR filter using Various Window Function
Design Technique of Bandpass FIR filter using Various Window FunctionDesign Technique of Bandpass FIR filter using Various Window Function
Design Technique of Bandpass FIR filter using Various Window Function
 
A Novel Mechanism for Low Bit-Rate Compression
A Novel Mechanism for Low Bit-Rate CompressionA Novel Mechanism for Low Bit-Rate Compression
A Novel Mechanism for Low Bit-Rate Compression
 
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, Nigeria
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, NigeriaEvaluation of Radiation Emmission from Refuse Dump Sites in Owerri, Nigeria
Evaluation of Radiation Emmission from Refuse Dump Sites in Owerri, Nigeria
 
Security System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor TechnologySecurity System Based on Ultrasonic Sensor Technology
Security System Based on Ultrasonic Sensor Technology
 
Ensemble Empirical Mode Decomposition: An adaptive method for noise reduction
Ensemble Empirical Mode Decomposition: An adaptive method for noise reductionEnsemble Empirical Mode Decomposition: An adaptive method for noise reduction
Ensemble Empirical Mode Decomposition: An adaptive method for noise reduction
 
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.
Structural analysis of the magnetic poles of the 20 MeV Injector Microtron.
 
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) Seeds
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) SeedsOil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) Seeds
Oil and Fatty Acids Composition in Glasswort (Salicornia Fruticosa) Seeds
 
H0563843
H0563843H0563843
H0563843
 
Optimized mould design of an Air cooler tank
Optimized mould design of an Air cooler tankOptimized mould design of an Air cooler tank
Optimized mould design of an Air cooler tank
 
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning System
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning SystemHybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning System
Hybrid Algorithm for Dose Calculation in Cms Xio Treatment Planning System
 
Neonatal Omphalitis in Iraq
Neonatal Omphalitis in IraqNeonatal Omphalitis in Iraq
Neonatal Omphalitis in Iraq
 
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...
An On-Situ Study of Stability Analysis on Slopes Using Undrained Shear Streng...
 
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...
Discovery of superluminal velocities of X-rays and Bharat Radiation challengi...
 
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012
Stock Selection Skills of Indian Mutual Fund Managers during 2000-2012
 
Minimization of Surface Roughness in CNC Turning Using Taguchi Method
Minimization of Surface Roughness in CNC Turning Using Taguchi MethodMinimization of Surface Roughness in CNC Turning Using Taguchi Method
Minimization of Surface Roughness in CNC Turning Using Taguchi Method
 
Public Transport Accessibility Index for Thiruvananthapuram Urban Area
Public Transport Accessibility Index for Thiruvananthapuram Urban AreaPublic Transport Accessibility Index for Thiruvananthapuram Urban Area
Public Transport Accessibility Index for Thiruvananthapuram Urban Area
 
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...
Hydrochemistry of groundwater with special reference to arsenic in Lakhimpur ...
 
Industrial Process Management Using LabVIEW
Industrial Process Management Using LabVIEWIndustrial Process Management Using LabVIEW
Industrial Process Management Using LabVIEW
 
GMR Materials: A New Generation of Miniaturizated Technology
GMR Materials: A New Generation of Miniaturizated TechnologyGMR Materials: A New Generation of Miniaturizated Technology
GMR Materials: A New Generation of Miniaturizated Technology
 

Similar to Mining Top-k Closed Sequential Patterns in Sequential Databases

Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...AshishDPatel1
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalAlexander Decker
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalAlexander Decker
 
Mining Approach for Updating Sequential Patterns
Mining Approach for Updating Sequential PatternsMining Approach for Updating Sequential Patterns
Mining Approach for Updating Sequential PatternsIOSR Journals
 
A Survey of Sequential Rule Mining Techniques
A Survey of Sequential Rule Mining TechniquesA Survey of Sequential Rule Mining Techniques
A Survey of Sequential Rule Mining Techniquesijsrd.com
 
Mining top k frequent closed itemsets
Mining top k frequent closed itemsetsMining top k frequent closed itemsets
Mining top k frequent closed itemsetsyuanchung
 
Mining closed sequential patterns in large sequence databases
Mining closed sequential patterns in large sequence databasesMining closed sequential patterns in large sequence databases
Mining closed sequential patterns in large sequence databasesijdms
 
Sequential Pattern Tree Mining
Sequential Pattern Tree MiningSequential Pattern Tree Mining
Sequential Pattern Tree MiningIOSR Journals
 
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...IRJET Journal
 
StackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkStackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkSri Ambati
 
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...BRNSSPublicationHubI
 
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...Salah Amean
 
Machine Learning Algorithms (Part 1)
Machine Learning Algorithms (Part 1)Machine Learning Algorithms (Part 1)
Machine Learning Algorithms (Part 1)Zihui Li
 
5 parallel implementation 06299286
5 parallel implementation 062992865 parallel implementation 06299286
5 parallel implementation 06299286Ninad Samel
 
IEEE Datamining 2016 Title and Abstract
IEEE  Datamining 2016 Title and AbstractIEEE  Datamining 2016 Title and Abstract
IEEE Datamining 2016 Title and Abstracttsysglobalsolutions
 
A Load-Balanced Parallelization of AKS Algorithm
A Load-Balanced Parallelization of AKS AlgorithmA Load-Balanced Parallelization of AKS Algorithm
A Load-Balanced Parallelization of AKS AlgorithmTELKOMNIKA JOURNAL
 
A Novel Approach of Caching Direct Mapping using Cubic Approach
A Novel Approach of Caching Direct Mapping using Cubic ApproachA Novel Approach of Caching Direct Mapping using Cubic Approach
A Novel Approach of Caching Direct Mapping using Cubic ApproachKartik Asati
 
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...Universidad Rey Juan Carlos
 

Similar to Mining Top-k Closed Sequential Patterns in Sequential Databases (20)

Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
Graph based Approach and Clustering of Patterns (GACP) for Sequential Pattern...
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
 
Mining Approach for Updating Sequential Patterns
Mining Approach for Updating Sequential PatternsMining Approach for Updating Sequential Patterns
Mining Approach for Updating Sequential Patterns
 
A Survey of Sequential Rule Mining Techniques
A Survey of Sequential Rule Mining TechniquesA Survey of Sequential Rule Mining Techniques
A Survey of Sequential Rule Mining Techniques
 
Mining top k frequent closed itemsets
Mining top k frequent closed itemsetsMining top k frequent closed itemsets
Mining top k frequent closed itemsets
 
Mining closed sequential patterns in large sequence databases
Mining closed sequential patterns in large sequence databasesMining closed sequential patterns in large sequence databases
Mining closed sequential patterns in large sequence databases
 
Sequential Pattern Tree Mining
Sequential Pattern Tree MiningSequential Pattern Tree Mining
Sequential Pattern Tree Mining
 
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...
An Optimized Parallel Algorithm for Longest Common Subsequence Using Openmp –...
 
DAA Notes.pdf
DAA Notes.pdfDAA Notes.pdf
DAA Notes.pdf
 
StackNet Meta-Modelling framework
StackNet Meta-Modelling frameworkStackNet Meta-Modelling framework
StackNet Meta-Modelling framework
 
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
 
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...Data Mining:  Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
Data Mining: Concepts and Techniques_ Chapter 6: Mining Frequent Patterns, ...
 
Machine Learning Algorithms (Part 1)
Machine Learning Algorithms (Part 1)Machine Learning Algorithms (Part 1)
Machine Learning Algorithms (Part 1)
 
5 parallel implementation 06299286
5 parallel implementation 062992865 parallel implementation 06299286
5 parallel implementation 06299286
 
IEEE Datamining 2016 Title and Abstract
IEEE  Datamining 2016 Title and AbstractIEEE  Datamining 2016 Title and Abstract
IEEE Datamining 2016 Title and Abstract
 
H0964752
H0964752H0964752
H0964752
 
A Load-Balanced Parallelization of AKS Algorithm
A Load-Balanced Parallelization of AKS AlgorithmA Load-Balanced Parallelization of AKS Algorithm
A Load-Balanced Parallelization of AKS Algorithm
 
A Novel Approach of Caching Direct Mapping using Cubic Approach
A Novel Approach of Caching Direct Mapping using Cubic ApproachA Novel Approach of Caching Direct Mapping using Cubic Approach
A Novel Approach of Caching Direct Mapping using Cubic Approach
 
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...
Towards Dynamic Consistency Checking in Goal-directed Predicate Answer Set Pr...
 

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

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
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
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
(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
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 

Recently uploaded (20)

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
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
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
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
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
(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...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 

Mining Top-k Closed Sequential Patterns in Sequential Databases

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 15, Issue 4 (Nov. - Dec. 2013), PP 20-23 www.iosrjournals.org www.iosrjournals.org 20 | Page Mining Top-k Closed Sequential Patterns in Sequential Databases K.Sohini 1 , Mr.V.Purushothama Raju 2 1 Dept of CSE, Shri Vishnu Engineering College for Women, Bhimavaram, A.P, India 2 Associate Professor, Dept of CSE, Shri Vishnu Engineering College for Women, Bhimavaram, A.P, India Abstract: In data mining community, sequential pattern mining has been studied extensively. Most studies require the specification of minimum support threshold to mine the sequential patterns. However, it is difficult for users to provide an appropriate threshold in practice. To overcome this, we propose mining top-k closed sequential patterns of length no less than min_l, where k is the number of closed sequential patterns to be mined, and min_l is the minimum length of each pattern. We mine closed patterns since they are solid representations of frequent patterns. Keywords: closed pattern, data mining, sequential pattern, scalability I. Introduction Sequential pattern mining is an important data mining task that has been studied extensively. Given a set of sequences, which consists of a list of itemsets, and given a user-specified minimum support threshold (min_support), sequential pattern mining is to find all frequent subsequences whose frequency is no less than min support. This mining task leads to the following two problems that may hinder its popular use. First, sequential pattern mining often generates an exponential number of patterns, which is unavoidable when the database consists of long frequent sequences. The similar phenomena also exist in itemset and graph patterns when the patterns are large. For example, assume the database contains a frequent sequence <(a1) (a2)…(a100)>, it will generate 2100 -1 frequent subsequences. It is very possible some subsequences share the exact same support with this long sequence, which are essentially redundant patterns. Second, setting min_support is a subtle task: A too small value may lead to the generation of thousands of patterns, whereas a too big one may lead to no answer found. To come up with an appropriate min_support, one needs to have prior knowledge about the mining query and the task specific data, and be able to guess beforehand how many patterns will be generated with a particular threshold. A solution to the first problem was proposed recently by Yan, et al. [1]. Their algorithm, called CloSpan, can mine closed sequential patterns. A sequential pattern s is closed, if there exists, no super pattern of s with the same support in the database. When the patterns were mined for closed sequences and information lossless then the Patterns will be reduced, because it can be used to derive the complete set of sequential patterns. As to the second problem, a similar situation occurs in frequent itemset mining. As proposed in [3], a good solution is to change the task of mining frequent patterns to mining top-k frequent closed patterns of minimum length min_l, where k is the number of closed patterns to be mined, top-k refers to the k most frequent patterns, and min_l is the minimum length of the closed patterns. This setting is also desirable in the context of sequential pattern mining. Unfortunately, most of the techniques developed in [3] cannot be directly applied in sequence mining, because this subsequence testing requires order matching which is more difficult than subset testing. Moreover, the search space of sequences is much larger than that of itemsets. Nevertheless, some ideas developed in [3] are still influential in our algorithm design. II. Related Work Efficient algorithms like PrefixSpan [5] SPADE[6] GSP[7] were developed for mining the sequential patterns. As sequential pattern mining produces many patterns so closed sequential pattern mining algorithms like CloSpan[1] , BIDE[8] were developed. All these algorithms can deliver less patterns than sequential pattern mining, but do not lose any information. Top-k closed pattern mining will reduce the number of patterns further by only mining the most frequent ones. As to mining the top-k patterns, CloSpan[1] and TFP [3] are the most related. CloSpan mines the frequent closed sequential patterns while TFP discovers top-k closed itemsets. III. Method Development The sequential pattern mining based on the concept of projection based, is introduced (PrefixSpan[5]) it gives some background idea. Then a new Top-k mining algorithm was introduced with background of CloSpan and top-k.
  • 2. Mining Top-k Closed Sequential Patterns in Sequential Databases www.iosrjournals.org 21 | Page For each discovered sequence s and its projected database Ds, it performs itemset extension and sequence- extension recursively until all the frequent sequences with prefix s are discovered. Given a sequence s=<t1,…..,tm> and an item a, sa means s concatenates with a It can be I-Step extension ,si a =<t1,…..,tm U{a}> Or S-Step extension, ss a =<t1,…..,tm ,{a}> Example:<(ae)> is an I-Step extension of <(a)> <(a)(c)> is an S-Step extension of <(a)> Algorithm: Top-k mining Input: A sequence s, a projected database Ds, minimum length min_l, histograms H and constant factor f Output: The top-k closed sequence set k 1. if support of s is less than min_support then return 2. if length of s is equal to minimum length then 3. call Prefix Span With Support Raising (s, Ds, min_support, k ) ; 4. return; 5. scan the database Ds once and find every frequent item a such that s can be extended to sa; 6. insert a in histogram at length (l+1); 7. next_level_top_support  Get Top Support From Histogram ( f, H[l(s)+1]) 8. for each a, support(a)>=next_level_top_support do 9. call Top-k mining ( sa , Dsa, min_l ); 10. return; In the prefix span it finds all the frequent sequences, they include both closed and non-closed sequences. Since our task is to mine top-k closed sequential patterns without min_support threshold, the mining process should start with min_support = 1, raise it progressively during the process, and then use the raised min_support to prune the search space. As soon as at least k closed sequential patterns with length no less than min_l are found, min_support can be set to the support of the least frequent pattern, and this min_support raising process continues throughout the mining process. This min_support raising technique is simple and can lead to efficient mining. There is only one algorithm CloSpan[1], that guarantees the slightest k closed sequential patterns are found as a result min_support can be raised during the mining. In Top-k mining, it includes if the support of s is less than min_support then return, if the length of s is equal to min_l then call Prefix Span With Support Raising. Then scan the database Ds once and find the closed sequence so that s can be extended to sa. Then insert a into histogram, finally if the support of a is greater or equal to next level top support then call top-k mining. IV. Performance evaluation This section reports the performance testing of Top-k closed sequential patterns in large data sets. The performance of Top-k with CloSpan is compared. The comparison is by assigning the optimal min-support to CloSpan so that it generates the same set of top-k closed sequential patterns for specified values of k. These were performed on a 2.10GHz Intel core duo PC with 2GB main memory, Windows XP/7 Professional. The performance of algorithms was compared by varying k. When k is fixed, its value is set to either 50 or 500 which covers the range of typical values for this parameter. Fig.1, show the performance of sample dataset. This dataset consists of relatively short sequences, each sequence contains 6 itemsets on average and the itemsets have 3 items on average. This experiment shows that top-k mines the data efficiently and with minimum running time than CloSpan. Mainly there are two reasons for better performance of Top-k in this dataset, first it uses min_l condition to reduce short sequences during the mining process that will reduce the search space and improves performance. Second, Top_k have efficient pattern verification and stores the result set that contains only a small number of patterns.
  • 3. Mining Top-k Closed Sequential Patterns in Sequential Databases www.iosrjournals.org 22 | Page a. when k=50 b. when k=500 Fig. 1: performance of clospan and top-k when k is fixed. These were the graphs obtained when compared with sample database on clospan and top-k with constant min-l and running time. V. Conclusions In this paper, we have studied the problem of mining top-k closed sequential patterns with length no less than min_l and we proposed an efficient algorithm with the following distinct features: it implement a new Top-k algorithm that mine the sequential patterns quickly and raise support dynamically, and it perform efficient verification during the mining process, and it extend optimization technique together with applying the minimum length constraint (min_l). 0 20 40 60 80 100 120 140 160 180 2 4 6 8 10 12 runningtime min-l clospan top-k
  • 4. Mining Top-k Closed Sequential Patterns in Sequential Databases www.iosrjournals.org 23 | Page References [1] X. Yan, R. Afshar, and J. Han. CloSpan: Mining closed sequential patterns in large datasets. In May 2003, SDM, in California. [2] C. J. Hsiao and M. J. Zaki. CHARM: An efficient algorithm for closed itemset mining. In April 2002, SDM, in Arlington,VA. [3] J. Han, J. Wang, Y. Lu, and P. Tzvetkov. Mining topk frequent closed patterns without minimum support. In Dec. 2002, ICDM, in Maebashi, Japan. [4] R. Agrawal and R. Srikant. Mining sequential patterns. In Mar. 1995, ICDE, in Taipei, Taiwan. [5] J. Pei, J. Han, B. Mortazavi-Asl, M.C. Hsu , Q. Chen,U. Dayal, and H. Pinto. PrefixSpan: Mining sequential patterns efficiently by prefix-projected pattern growth. In April 2001, ICDE, in Germany. [6] M. Zaki. In 2001, SPADE: An efficient algorithm for mining frequent sequences. [7] R.Srikant and R. Agrawal. Mining sequential patterns: Generalizations and performance improvements. In Avignon, France, Mar. 1996. [8] J.Wang and J. Han. BIDE, Efficient Mining of Frequent Closed Sequences, in 2004, ICDE.