SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 166
SCALABLE AND EFFICIENT CLUSTER-BASED FRAMEWORK FOR
MULTIDIMENSIONAL INDEXING
Aretty Narayana1
, M. Srinivasa Rao2
, R.V.Krishnaiah3
1
M.Tech Student, 2
Associate Professor, 3
Principal, Dept. of CSE, DRKCET, Hyderabad, AP, India
arettynarayan4u@gmail.com, msrao@drkgroup.org, r.v.krishnaiah@gmail.com
Abstract
Indexing high dimensional data has its utility in many real world applications. Especially the information retrieval process is
dramatically improved. The existing techniques could overcome the problem of “Curse of Dimensionality” of high dimensional data
sets by using a technique known as Vector Approximation-File which resulted in sub-optimal performance. When compared with VA-
File clustering results in more compact data set as it uses inter-dimensional correlations. However, pruning of unwanted clusters is
important. The existing pruning techniques are based on bounding rectangles, bounding hyper spheres have problems in NN search.
To overcome this problem Ramaswamy and Rose proposed an approach known as adaptive cluster distance bounding for high
dimensional indexing which also includes an efficient spatial filtering. In this paper we implement this high-dimensional indexing
approach. We built a prototype application to for proof of concept. Experimental results are encouraging and the prototype can be
used in real time applications.
Index Terms–Clustering, high dimensional indexing, similarity measures, and multimedia databases
---------------------------------------------------------------------***-------------------------------------------------------------------------
1. INTRODUCTION
Data mining has been around for many years for
programmatically analyzing huge amount of historical data.
Clustering is one of the data mining techniques which is
widely used to group similar objects into a clusters. However,
clustering is not easy with high-dimensional data which is
being produced in many domains such as digital multimedia,
CAD/CAM systems, Geographical Information Systems
(GIS), stock markets, and medical imaging. The high
dimensional data is very huge ranging from 100 GB to 100 TB
or more. Enterprises have to deal with such huge data. Such
data is accessed using NN queries and spatial queries. Many
researches came into existence on queries high dimensional
data [1], [2]. These techniques use similarity measures like
Euclidean Distance while making clustering. In [3] search
performance has been improved using R-tree like structures.
All the existing techniques expect the data sets to have
uniform distribution of correlations in order to overcome the
problem of “curse of dimensionality”. As the nearest and
distant neighbors are not distinguishable, indexing such
datasets is not possible. The real world data sets on the other
hand have non-uniform distribution of correlations. Therefore
these data sets can be indexed really using techniques such as
Euclidean Distance. The usage of ED is a significant research
activity which is used in many applications including content
– based image retrieval [4], [5]. In this paper we focused on
the real world datasets which are high-dimensional in nature
for indexing.
2. PRIOR WORKS
In case of low dimensional data techniques such as hyper-
rectangles [6], [7], hyper spheres [8] or combination of both
[9] were used for NN searches and effective data retrieval.
Manyresearches were found in the literature to deal with high-
dimensional data. Multi-dimensional indexing always
outperforms low dimensional structures as they can access
data quickly when compared with sequential scan. However,
Weber et al. [10] proved that when dimensionality is more
than 10, sequential scan is better than using indexing. The
degradation of performance is due to the “curse of
dimensionality” concept proposed in [11]. VA-files concept
became popular to overcome thisproblem. The VA-File
technique divides space into many hyper-rectangular cells and
the approximation file holds strings pertaining to encoded bits
that represent non-empty cell locations. The vector
approximation ultimately leads to scalar quantization which
overcomes curse of dimensionality. LDR [12] uses non-linear
approximation in order to perform sequential scan. It is
achieved by using dimensionality reduction and also
clustering. There are some hybrid methods such as IQ-Tree
[13] and A-Tree [14] that makes use of both VA and tree
based index. Other methods like Pyramid Tree [15], iDistnce
[16] and LDC [17] reduce transformations based on local
dimensionality. A reference point is used to evaluate partitions
made on dataset. Each partition has feature vectors that are
indexed using their centroid-distance. When queries are made
the spheres increase gradually until the cluster sphere is
intersected. For quality reasons, the query processing
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 167
identifies centroid – distances. The radius for search is
adjusted in such a way that the NN query returns exact results.
Another experiment is made using approximation layer in
LDC [17] by creating a box identification code which
represents resident points. Once set of candidates are
identified, then the B+ tree is used to filter out unwanted
points. The resultant elements are finally retrieved in the NN
result. Care is taken to control search space in order to reduce
disk IO and also ensure that accurate results are retrieved by
NN queries.
3. CLUSTER DISTANCE BOUNDING
Our procedure to measure distances to clusters is based on the
cluster distance bounding proposed by Ramaswamy and Rose
[18]. The architectural overview of the frameworkproposed by
them is as shown in fig. 1.
Fig. 1 –Architecture of Proposed Index Structure (excerpt
from [18])
As seen in fig. 1the index structure contains array of cluster
centroids which point to the cluster locations. The whole
structure is like an index in book which will improve the query
processing speed. In the same fashion, the NN queries and
other queries on high-dimensional data can be processed
faster. The data objects are grouped into number of clusters
namely Voronoi clusters. The cluster-based indexing makes it
more flexible and adaptable thus making the whole system
scalable. This architecture makes the query retrieval very
efficient and faster than other existing clustering algorithms
and related indexes.
Their algorithms are used to implement the prototype which
demonstrates the high dimensional indexing process. The first
algorithm we used in the prototype application is to make
voronoi clusters. The algorithms are presented in fig. 2, fig. 3
and fig. 4. More information about the algorithms and
notations used inthe algorithms can be found in [18]. It is as
shown in fig. 1
Algorithm 1 VORNOI-CLUSTERS(X, K)
1: // Generic clustering algorithm returns
// K cluster centroids
{cm}K
=1 ---- GenericCluster(X,K)
2: set l=0, X1= Ø, X2= Ø…… XK= Ø
3: while l< |X| do
4: l=l+1
5: //Find the centroid nearest to data element X1
K=arg min d(Xl , Cm)
6: //Move Xl to the corresponding Voronoi partition
XK = XK Ụ {Xl}
7: end while
8: return {Xm
K
=1}, {cm}K
=1
Fig. 2–Algorithm for Voronoi Clusters (excerpt from [18])
As can be seen in fig. 2, the algorithm takes a dataset and K
value as input and generates and returns required Voronoi
clusters. Initially a generic clustering algorithm like K-means
is used to get cluster centroids. The algorithm further
processes and finally returns Voronoi clusters. In fig. 3
algorithm 2 is presented. It is meant for making kNN search.
Algorithm 2 KNN-SEARCH(q)
1: //Initialize
set FLAG=0, count = 0,N = 0, kNN = φ
2: //Evaluate query-cluster distance bounds
dLB[] ←HyperplaneBound(q)
3: //Sort the query-cluster distance bounds in
ascending
//order
{dsort
LB[], o[]} ←SortArray(dLB,’ascend’)
4: while FLAG==0 do
5: count = count + 1
6: //Find the kNNs upto current cluster
{Nc, kNN} ←FindkNNsIn(q,Xo[count], kNN)
7: //Update number of elements scanned
N = N + Nc
8: //Find the kNN radius
dkNN=Farthest(q, kNN)
9: if count < K then
10: if N >k then
11: if dkNN< dsort
LB [count + 1] then
12: set FLAG=1 //kNNs found, search ends
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 168
13: end if
14: end if
15: else
16: set FLAG=1 //all clusters scanned, search ends
17: end if
18: end while
19: return kNN
Fig. 3 – kNN Search Algorithm
As seen in fig. 3, it is evident that the kNN algorithm is meant
for performing k-Nearest Neighbor Search. It takes a query as
input and returns k-Nearest Neighbors as possible search
results. Algorithm 3 is meant for providing some support to
algorithm 2.
Algorithm 3 FindkNNsIn(q,A, I)
1: set Nc= 0, F=Open(A), kNN = I
2: while !(EOF(F)) do
3: // Load the next cluster page
C=LoadNextPage(F)
4: //Merge kNN list with current page
Xcand = C Ụ kNN
5: //Find the kNNs within the candidate list
kNN[] ←FindkNN(q,Xcand)
6: //Update number of elements scanned
Nc= Nc+ |C|
7: end while
8: return Nc, kNN
Fig. 4–Algorithm for some intermediary functionality
As seen in fig. 4, it is evident that it performs some
functionality and returns intermediary results which are used
by its caller. Its caller is algorithm 2 that is meant for k-NN
search which returns k-Nearest Neighbors that satisfy the
given query.
4. RESULTS
We built a prototype application to demonstrate the proof of
concept of the paper. We have used many real time data sets to
apply the index structure proposed in [18]. The datasets used
in experiments include SENSORS, HISTOGRAM, AERIAL,
CORTINA and BIO-RETINA. The details of dimensions,
number of vectors and size in terms of pages of these data sets
are presented in table 1.
Table 1- Dataset details
As can be seen in table 1, the dimensionality of data sets and
the number of vectors involved in each dataset are given. The
environment used for developing prototype application
includes a PC with 4GB RAM, Core 2 Dual processor running
Windows XP operating system. Java platform is used to build
the application. NetBeans is used as an IDE (Integrated
Development Environment). Experiments are made in terms
of number of sequential pages scanned, number of random IO
operations, with KNNs and various datasets.
Fig. 5–IO Performance of Distance Bounds (BIO-RETINA
dataset)
As can be seen in fig.5, the horizontal axis represents number
of random IOs while the vertical axis represents number of
sequential pages. As shown in results hyperlane bounds
outperform the other bounds.
Fig. 6 – IO Performance of Distance Bounds (AERIAL
dataset)
0
500
1000
1500
2000
2500
3000
3500
1 2 3 4 5 6 7 8
NumberofSequential
Pages
No.Of Random IOS (log scale)
MBR
Sphere
Bound
Hyperplane(f
wd.comp.)
Hyperplane(f
ull)
0
2000
4000
6000
8000
1 2 3 4 5 6 7 8 9
Numberof
SequentialPages
No.of Random IOS(log scale)
MBR
Sphere
Bound
Hyperplane(
fwd.comp.)
Hyperplane(
full)
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 169
As can be seen in fig.6, the horizontal axis represents number
of random IOs while the vertical axis represents number of
sequential pages. As shown in results hyperlane bounds
outperform the other bounds.
Fig. 7 – IO Performance of Distance Bounds (SENSORS
dataset)
As can be seen in fig. 7, the horizontal axis represents number
of random IOs while the vertical axis represents number of
sequential pages. As shown in results hyperlane bounds
outperform the other bounds.
Fig. 8 – IO Performance of Distance Bounds (SENSORS
dataset)
As can be seen in fig. 8, the horizontal axis represents number
of random IOs while the vertical axis represents number of
sequential pages. As shown in results hyperlane bounds
outperform the other bounds.
CONCLUSIONS
Dealing with real multi-dimensional datasets that have
correlations distributed in non-uniform fashion is not easy.
Indexing such data is a challenging task. The existing indexing
methods used VA-File through scalar quantization. However,
this approach is proved to be suboptimal. Therefore, in this
paper, we implement a new approach proposed by
Ramaswamy and Rose [18] which groups datasets into
Voronoi clusters. It is achieved by using similarity measures
such as Mahalanobis and Euclidean. This has resulted in the
reduction of IOs. We also built a prototype application which
demonstrates the utility of the proposed approach. We made
experiments using various multi-dimensional data sets. The
empirical results revealed that the indexing approach followed
in the prototype is effective and can be used in the real world
applications.
REFERENCES
[1] K. S. Beyer, J. Goldstein, R. Ramakrishnan, and U. Shaft,
“When is“nearest neighbor” meaningful?” in ICDT, 1999, pp.
217–235.
[2] C. C. Aggarwal, A. Hinneburg, and D. A. Keim, “On the
surprisingbehavior of distance metrics in high dimensional
spaces,” in ICDT, 2001,pp. 420–434.
[3] B. U. Pagel, F. Korn, and C. Faloutsos, “Deflating the
dimensionalitycurse using multiple fractal dimensions,” in
ICDE, 2000, pp. 589–598.
[4] T. Huang and X. S. Zhou, “Image retrieval with relevance
feedback:From heuristic weight adjustment to optimal
learning methods,” in ICIP,vol. 3, 2001, pp. 2–5.
[5] J. Davis, B. Kulis, P. Jain, S. Sra, and I. Dhillon,
“Information-theoreticmetric learning,” in ICML, 2007, pp.
209–216.
[6] A. Guttman, “R-trees: A dynamic index structure for
spatial searching.”in SIGMOD, 1984, pp. 47–57.
[7] N. Beckmann, H. Kriegel, R. Schneider, and B. Seeger,
“The R*-tree:an efficient and robust access method for points
and rectangles,” inSIGMOD, 1990, pp. 322–331.
[8] D. A. White and R. Jain, “Similarity indexing with the SS-
tree,” inICDE, 1996, pp. 516–523.
[9] N. Katayama and S. Satoh, “The SR-tree: An index
structure for highdimensionalnearest neighbor queries.” in
SIGMOD, May 1997, pp. 369–380.
[10] R. Weber, H. Schek, and S. Blott, “A quantitative
analysis and performancestudy for similarity-search methods
in high-dimensional spaces.”in VLDB, August 1998, pp. 194–
205.
[11] R. Bellman, Adaptive Control Processes: A Guided Tour.
Princeton,NJ: Princeton University Press, 1961.
[12] K. Chakrabarti and S. Mehrotra, “Local dimensionality
reduction: A newapproach to indexing high dimensional
spaces.” in VLDB, September2000, pp. 89–100.
[13] S. Berchtold, C. Bohm, H. V. Jagadish, H. P. Kriegel, and
J. Sander,“Independent Quantization: An index compression
technique for highdimensionaldata spaces,” in ICDE, 2000,
pp. 577–588.
[14] Y. Sakurai, M. Yoshikawa, S. Uemura, and H. Kojima,
“The A-tree: Anindex structure for high-dimensional spaces
using relative approximation,”in VLDB, September 2000, pp.
516–526.
0
200
400
600
800
1000
1200
1400
1 2 3 4
NumberofSequentialPages
No.of Random IOS(log scale)
MBR
Sphere Bound
Hyperplane(fwd.c
omp.)
Hyperplane(full)
0
0.5
1
1.5
2
2.5
1 2 3 4 5 6 7
NumberofSequential
Pages
No.of Random IOS(log scale)
10NN
20NN
50NN
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 170
[15] S. Berchtold, C. Bohm, and H. Kriegel, “The Pyramid-
technique:Towards breaking the curse of dimensionality,” in
SIGMOD, 1998, pp.142–153.
[16] C. Yu, B. C. Ooi, K. L. Tan, and H. V. Jagadish,
“Indexing the distance:An efficient method to knn
processing.” in VLDB, September 2001, pp.421–430.
[17] N. Koudas, B. C. Ooi, H. T. Shen, and A. K. H. Tung,
“LDC: Enablingsearch by partial distance in a hyper-
dimensional space.” in ICDE, 2004,pp. 6–17.
[18] Sharadh Ramaswamyand Kenneth Rose, “Adaptive
Cluster Distance Bounding for High Dimensional Indexing”.
IEEE TRANSACTIONS ON KNOWLEDGE AND DATA
ENGINEERING, VOL.23, NO. 6, June 2011. P1-15.
BIOGRAPHIES:
Aretty Narayana has completed B.Tech (E.C.E)
from Srinivas Reddy Institute of Technology and
pursuing M.Tech (C.S.E) in DRK College of
Engineering and Technology, JNTUH,
Hyderabad, Andhra Pradesh, India. His main
research interest includes Data Mining, Database and DWH.
M. Srinivasa Rao is working as an Associate
Professor in DRK College of Engineering and
Technology, JNTUH, Hyderabad, Andhra
Pradesh, India. He is pursuing Ph.D in
Information Security. He has completed M.Tech
(C.S.E) from JNTUH. His main research
interest includes Information Security and Computer Ad-Hoc
Networks.
Dr. R. V. Krishnaiah, did M.Tech (EIE) from
NIT Waranagal, MTech (CSE) form JNTU,
Ph.D, from JNTU Ananthapur, He has
memberships in professional bodies MIE,
MIETE, MISTE. His main research interests
include Image Processing, Security systems, Sensors,
Intelligent Systems, Computer networks, Data mining,
Software Engineering, network protection and security
control. He has published many papers and Editorial Member
and Reviewer for some national and international journals.
Ad

More Related Content

What's hot (18)

50120130406022
5012013040602250120130406022
50120130406022
IAEME Publication
 
A fuzzy clustering algorithm for high dimensional streaming data
A fuzzy clustering algorithm for high dimensional streaming dataA fuzzy clustering algorithm for high dimensional streaming data
A fuzzy clustering algorithm for high dimensional streaming data
Alexander Decker
 
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
IJECEIAES
 
Fault diagnosis using genetic algorithms and
Fault diagnosis using genetic algorithms andFault diagnosis using genetic algorithms and
Fault diagnosis using genetic algorithms and
eSAT Publishing House
 
Lx3520322036
Lx3520322036Lx3520322036
Lx3520322036
IJERA Editor
 
Fault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curvesFault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curves
eSAT Journals
 
Mine Blood Donors Information through Improved K-Means Clustering
Mine Blood Donors Information through Improved K-Means ClusteringMine Blood Donors Information through Improved K-Means Clustering
Mine Blood Donors Information through Improved K-Means Clustering
ijcsity
 
Az36311316
Az36311316Az36311316
Az36311316
IJERA Editor
 
A Novel Approach for Clustering Big Data based on MapReduce
A Novel Approach for Clustering Big Data based on MapReduce A Novel Approach for Clustering Big Data based on MapReduce
A Novel Approach for Clustering Big Data based on MapReduce
IJECEIAES
 
A0360109
A0360109A0360109
A0360109
iosrjournals
 
Privacy preserving clustering on centralized data through scaling transf
Privacy preserving clustering on centralized data through scaling transfPrivacy preserving clustering on centralized data through scaling transf
Privacy preserving clustering on centralized data through scaling transf
IAEME Publication
 
Parallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive IndexingParallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive Indexing
IRJET Journal
 
Finding Relationships between the Our-NIR Cluster Results
Finding Relationships between the Our-NIR Cluster ResultsFinding Relationships between the Our-NIR Cluster Results
Finding Relationships between the Our-NIR Cluster Results
CSCJournals
 
84cc04ff77007e457df6aa2b814d2346bf1b
84cc04ff77007e457df6aa2b814d2346bf1b84cc04ff77007e457df6aa2b814d2346bf1b
84cc04ff77007e457df6aa2b814d2346bf1b
PRAWEEN KUMAR
 
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
TELKOMNIKA JOURNAL
 
20320140501002 2
20320140501002 220320140501002 2
20320140501002 2
IAEME Publication
 
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
ijcsit
 
A frame work for clustering time evolving data
A frame work for clustering time evolving dataA frame work for clustering time evolving data
A frame work for clustering time evolving data
iaemedu
 
A fuzzy clustering algorithm for high dimensional streaming data
A fuzzy clustering algorithm for high dimensional streaming dataA fuzzy clustering algorithm for high dimensional streaming data
A fuzzy clustering algorithm for high dimensional streaming data
Alexander Decker
 
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
Fuzzy clustering and fuzzy c-means partition cluster analysis and validation ...
IJECEIAES
 
Fault diagnosis using genetic algorithms and
Fault diagnosis using genetic algorithms andFault diagnosis using genetic algorithms and
Fault diagnosis using genetic algorithms and
eSAT Publishing House
 
Fault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curvesFault diagnosis using genetic algorithms and principal curves
Fault diagnosis using genetic algorithms and principal curves
eSAT Journals
 
Mine Blood Donors Information through Improved K-Means Clustering
Mine Blood Donors Information through Improved K-Means ClusteringMine Blood Donors Information through Improved K-Means Clustering
Mine Blood Donors Information through Improved K-Means Clustering
ijcsity
 
A Novel Approach for Clustering Big Data based on MapReduce
A Novel Approach for Clustering Big Data based on MapReduce A Novel Approach for Clustering Big Data based on MapReduce
A Novel Approach for Clustering Big Data based on MapReduce
IJECEIAES
 
Privacy preserving clustering on centralized data through scaling transf
Privacy preserving clustering on centralized data through scaling transfPrivacy preserving clustering on centralized data through scaling transf
Privacy preserving clustering on centralized data through scaling transf
IAEME Publication
 
Parallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive IndexingParallel KNN for Big Data using Adaptive Indexing
Parallel KNN for Big Data using Adaptive Indexing
IRJET Journal
 
Finding Relationships between the Our-NIR Cluster Results
Finding Relationships between the Our-NIR Cluster ResultsFinding Relationships between the Our-NIR Cluster Results
Finding Relationships between the Our-NIR Cluster Results
CSCJournals
 
84cc04ff77007e457df6aa2b814d2346bf1b
84cc04ff77007e457df6aa2b814d2346bf1b84cc04ff77007e457df6aa2b814d2346bf1b
84cc04ff77007e457df6aa2b814d2346bf1b
PRAWEEN KUMAR
 
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
K Means Clustering and Meanshift Analysis for Grouping the Data of Coal Term ...
TELKOMNIKA JOURNAL
 
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
AN EFFECT OF USING A STORAGE MEDIUM IN DIJKSTRA ALGORITHM PERFORMANCE FOR IDE...
ijcsit
 
A frame work for clustering time evolving data
A frame work for clustering time evolving dataA frame work for clustering time evolving data
A frame work for clustering time evolving data
iaemedu
 

Viewers also liked (17)

JPJ1404 Building Confidential And Efficient Query Services In The Cloud Wit...
JPJ1404   Building Confidential And Efficient Query Services In The Cloud Wit...JPJ1404   Building Confidential And Efficient Query Services In The Cloud Wit...
JPJ1404 Building Confidential And Efficient Query Services In The Cloud Wit...
chennaijp
 
IRH Community Radio in Guatemala
IRH Community Radio in GuatemalaIRH Community Radio in Guatemala
IRH Community Radio in Guatemala
Institute for Reproductive Health Georgetown University
 
ολα εξαρτώνται από μένα
ολα εξαρτώνται από μέναολα εξαρτώνται από μένα
ολα εξαρτώνται από μένα
pkarad4
 
Company formation in Latvia
Company formation in LatviaCompany formation in Latvia
Company formation in Latvia
Andris Skutans
 
An odd even block cipher based cryptosystem through modulo arithmatic techniq...
An odd even block cipher based cryptosystem through modulo arithmatic techniq...An odd even block cipher based cryptosystem through modulo arithmatic techniq...
An odd even block cipher based cryptosystem through modulo arithmatic techniq...
eSAT Journals
 
Introducing CycleBeads in Title X Clinics: Preliminary findings of an OPA-fun...
Introducing CycleBeads in Title X Clinics: Preliminary findings of an OPA-fun...Introducing CycleBeads in Title X Clinics: Preliminary findings of an OPA-fun...
Introducing CycleBeads in Title X Clinics: Preliminary findings of an OPA-fun...
Institute for Reproductive Health Georgetown University
 
What makes 10th year anniversary special
What makes 10th year anniversary specialWhat makes 10th year anniversary special
What makes 10th year anniversary special
Ronrig81
 
Socio drama
Socio dramaSocio drama
Socio drama
criztian1991g
 
Financing Acquisitions Using Debt Capital
Financing Acquisitions Using Debt CapitalFinancing Acquisitions Using Debt Capital
Financing Acquisitions Using Debt Capital
Greg Tobben
 
Sintesis informativa 17 de marzo 2015
Sintesis informativa 17 de marzo 2015Sintesis informativa 17 de marzo 2015
Sintesis informativa 17 de marzo 2015
megaradioexpress
 
The Cost of Cost-cutting
The Cost of Cost-cuttingThe Cost of Cost-cutting
The Cost of Cost-cutting
Danie Schoeman
 
Social networks, family planning use and unmet need in Mali: Ethnographic res...
Social networks, family planning use and unmet need in Mali: Ethnographic res...Social networks, family planning use and unmet need in Mali: Ethnographic res...
Social networks, family planning use and unmet need in Mali: Ethnographic res...
Institute for Reproductive Health Georgetown University
 
Flavonoid glycosides
Flavonoid glycosidesFlavonoid glycosides
Flavonoid glycosides
College of Pharmacy, King Saud University
 
Cyber attack
Cyber attackCyber attack
Cyber attack
Avinash Navin
 
Linear Dynamic Analysis and Seismic Evaluation of RC Building
Linear Dynamic Analysis and Seismic Evaluation of RC BuildingLinear Dynamic Analysis and Seismic Evaluation of RC Building
Linear Dynamic Analysis and Seismic Evaluation of RC Building
Qudsia Wahab, EIT
 
American Ballet Theatre
American Ballet TheatreAmerican Ballet Theatre
American Ballet Theatre
Melissa Lilly
 
Sap sales funnel examples
Sap sales funnel examplesSap sales funnel examples
Sap sales funnel examples
Fit Small Business
 
JPJ1404 Building Confidential And Efficient Query Services In The Cloud Wit...
JPJ1404   Building Confidential And Efficient Query Services In The Cloud Wit...JPJ1404   Building Confidential And Efficient Query Services In The Cloud Wit...
JPJ1404 Building Confidential And Efficient Query Services In The Cloud Wit...
chennaijp
 
ολα εξαρτώνται από μένα
ολα εξαρτώνται από μέναολα εξαρτώνται από μένα
ολα εξαρτώνται από μένα
pkarad4
 
Company formation in Latvia
Company formation in LatviaCompany formation in Latvia
Company formation in Latvia
Andris Skutans
 
An odd even block cipher based cryptosystem through modulo arithmatic techniq...
An odd even block cipher based cryptosystem through modulo arithmatic techniq...An odd even block cipher based cryptosystem through modulo arithmatic techniq...
An odd even block cipher based cryptosystem through modulo arithmatic techniq...
eSAT Journals
 
What makes 10th year anniversary special
What makes 10th year anniversary specialWhat makes 10th year anniversary special
What makes 10th year anniversary special
Ronrig81
 
Financing Acquisitions Using Debt Capital
Financing Acquisitions Using Debt CapitalFinancing Acquisitions Using Debt Capital
Financing Acquisitions Using Debt Capital
Greg Tobben
 
Sintesis informativa 17 de marzo 2015
Sintesis informativa 17 de marzo 2015Sintesis informativa 17 de marzo 2015
Sintesis informativa 17 de marzo 2015
megaradioexpress
 
The Cost of Cost-cutting
The Cost of Cost-cuttingThe Cost of Cost-cutting
The Cost of Cost-cutting
Danie Schoeman
 
Linear Dynamic Analysis and Seismic Evaluation of RC Building
Linear Dynamic Analysis and Seismic Evaluation of RC BuildingLinear Dynamic Analysis and Seismic Evaluation of RC Building
Linear Dynamic Analysis and Seismic Evaluation of RC Building
Qudsia Wahab, EIT
 
American Ballet Theatre
American Ballet TheatreAmerican Ballet Theatre
American Ballet Theatre
Melissa Lilly
 
Ad

Similar to Scalable and efficient cluster based framework for multidimensional indexing (20)

Noura2
Noura2Noura2
Noura2
Dr-mahmoud Algamel
 
A h k clustering algorithm for high dimensional data using ensemble learning
A h k clustering algorithm for high dimensional data using ensemble learningA h k clustering algorithm for high dimensional data using ensemble learning
A h k clustering algorithm for high dimensional data using ensemble learning
ijitcs
 
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
IOSR Journals
 
Variance rover system web analytics tool using data
Variance rover system web analytics tool using dataVariance rover system web analytics tool using data
Variance rover system web analytics tool using data
eSAT Publishing House
 
Variance rover system
Variance rover systemVariance rover system
Variance rover system
eSAT Journals
 
Classification Techniques: A Review
Classification Techniques: A ReviewClassification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce
 
CLUSTERING HYPERSPECTRAL DATA
CLUSTERING HYPERSPECTRAL DATACLUSTERING HYPERSPECTRAL DATA
CLUSTERING HYPERSPECTRAL DATA
csandit
 
Clustering Algorithm with a Novel Similarity Measure
Clustering Algorithm with a Novel Similarity MeasureClustering Algorithm with a Novel Similarity Measure
Clustering Algorithm with a Novel Similarity Measure
IOSR Journals
 
Analysis of mass based and density based clustering techniques on numerical d...
Analysis of mass based and density based clustering techniques on numerical d...Analysis of mass based and density based clustering techniques on numerical d...
Analysis of mass based and density based clustering techniques on numerical d...
Alexander Decker
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
inventionjournals
 
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
IOSR Journals
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
csandit
 
Data reduction techniques for high dimensional biological data
Data reduction techniques for high dimensional biological dataData reduction techniques for high dimensional biological data
Data reduction techniques for high dimensional biological data
eSAT Journals
 
New Approach for K-mean and K-medoids Algorithm
New Approach for K-mean and K-medoids AlgorithmNew Approach for K-mean and K-medoids Algorithm
New Approach for K-mean and K-medoids Algorithm
Editor IJCATR
 
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSIONEFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
AM Publications,India
 
Analysis and implementation of modified k medoids
Analysis and implementation of modified k medoidsAnalysis and implementation of modified k medoids
Analysis and implementation of modified k medoids
eSAT Publishing House
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big data
eSAT Publishing House
 
Survey on classification algorithms for data mining (comparison and evaluation)
Survey on classification algorithms for data mining (comparison and evaluation)Survey on classification algorithms for data mining (comparison and evaluation)
Survey on classification algorithms for data mining (comparison and evaluation)
Alexander Decker
 
International Journal of Soft Computing, Mathematics and Control (IJSCMC)
International Journal of Soft Computing, Mathematics and Control (IJSCMC)International Journal of Soft Computing, Mathematics and Control (IJSCMC)
International Journal of Soft Computing, Mathematics and Control (IJSCMC)
ijscmcj1
 
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
IRJET Journal
 
A h k clustering algorithm for high dimensional data using ensemble learning
A h k clustering algorithm for high dimensional data using ensemble learningA h k clustering algorithm for high dimensional data using ensemble learning
A h k clustering algorithm for high dimensional data using ensemble learning
ijitcs
 
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
K Means Clustering Algorithm for Partitioning Data Sets Evaluated From Horizo...
IOSR Journals
 
Variance rover system web analytics tool using data
Variance rover system web analytics tool using dataVariance rover system web analytics tool using data
Variance rover system web analytics tool using data
eSAT Publishing House
 
Variance rover system
Variance rover systemVariance rover system
Variance rover system
eSAT Journals
 
Classification Techniques: A Review
Classification Techniques: A ReviewClassification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce
 
CLUSTERING HYPERSPECTRAL DATA
CLUSTERING HYPERSPECTRAL DATACLUSTERING HYPERSPECTRAL DATA
CLUSTERING HYPERSPECTRAL DATA
csandit
 
Clustering Algorithm with a Novel Similarity Measure
Clustering Algorithm with a Novel Similarity MeasureClustering Algorithm with a Novel Similarity Measure
Clustering Algorithm with a Novel Similarity Measure
IOSR Journals
 
Analysis of mass based and density based clustering techniques on numerical d...
Analysis of mass based and density based clustering techniques on numerical d...Analysis of mass based and density based clustering techniques on numerical d...
Analysis of mass based and density based clustering techniques on numerical d...
Alexander Decker
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
inventionjournals
 
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
A Density Based Clustering Technique For Large Spatial Data Using Polygon App...
IOSR Journals
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
csandit
 
Data reduction techniques for high dimensional biological data
Data reduction techniques for high dimensional biological dataData reduction techniques for high dimensional biological data
Data reduction techniques for high dimensional biological data
eSAT Journals
 
New Approach for K-mean and K-medoids Algorithm
New Approach for K-mean and K-medoids AlgorithmNew Approach for K-mean and K-medoids Algorithm
New Approach for K-mean and K-medoids Algorithm
Editor IJCATR
 
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSIONEFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
EFFICIENT INDEX FOR A VERY LARGE DATASETS WITH HIGHER DIMENSION
AM Publications,India
 
Analysis and implementation of modified k medoids
Analysis and implementation of modified k medoidsAnalysis and implementation of modified k medoids
Analysis and implementation of modified k medoids
eSAT Publishing House
 
Implementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big dataImplementation of p pic algorithm in map reduce to handle big data
Implementation of p pic algorithm in map reduce to handle big data
eSAT Publishing House
 
Survey on classification algorithms for data mining (comparison and evaluation)
Survey on classification algorithms for data mining (comparison and evaluation)Survey on classification algorithms for data mining (comparison and evaluation)
Survey on classification algorithms for data mining (comparison and evaluation)
Alexander Decker
 
International Journal of Soft Computing, Mathematics and Control (IJSCMC)
International Journal of Soft Computing, Mathematics and Control (IJSCMC)International Journal of Soft Computing, Mathematics and Control (IJSCMC)
International Journal of Soft Computing, Mathematics and Control (IJSCMC)
ijscmcj1
 
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
Machine Learning Algorithms for Image Classification of Hand Digits and Face ...
IRJET Journal
 
Ad

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
eSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
eSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
eSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
eSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
eSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
eSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
eSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
eSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
eSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
eSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
eSAT Journals
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
eSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
eSAT Journals
 
Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
eSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
eSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
eSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
eSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
eSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
eSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
eSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
eSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
eSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
eSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
eSAT Journals
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
eSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
eSAT Journals
 

Recently uploaded (20)

Machine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptxMachine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptx
rajeswari89780
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Introduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptxIntroduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptx
AS1920
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Journal of Soft Computing in Civil Engineering
 
Metal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistryMetal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistry
mee23nu
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
Data Structures_Linear data structures Linked Lists.pptx
Data Structures_Linear data structures Linked Lists.pptxData Structures_Linear data structures Linked Lists.pptx
Data Structures_Linear data structures Linked Lists.pptx
RushaliDeshmukh2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
fluke dealers in bangalore..............
fluke dealers in bangalore..............fluke dealers in bangalore..............
fluke dealers in bangalore..............
Haresh Vaswani
 
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Journal of Soft Computing in Civil Engineering
 
Artificial Intelligence introduction.pptx
Artificial Intelligence introduction.pptxArtificial Intelligence introduction.pptx
Artificial Intelligence introduction.pptx
DrMarwaElsherif
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIHlecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
Abodahab
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 
Machine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptxMachine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptx
rajeswari89780
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
Introduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptxIntroduction to Zoomlion Earthmoving.pptx
Introduction to Zoomlion Earthmoving.pptx
AS1920
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Metal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistryMetal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistry
mee23nu
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
Data Structures_Linear data structures Linked Lists.pptx
Data Structures_Linear data structures Linked Lists.pptxData Structures_Linear data structures Linked Lists.pptx
Data Structures_Linear data structures Linked Lists.pptx
RushaliDeshmukh2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
fluke dealers in bangalore..............
fluke dealers in bangalore..............fluke dealers in bangalore..............
fluke dealers in bangalore..............
Haresh Vaswani
 
Artificial Intelligence introduction.pptx
Artificial Intelligence introduction.pptxArtificial Intelligence introduction.pptx
Artificial Intelligence introduction.pptx
DrMarwaElsherif
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIHlecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
lecture5.pptxJHKGJFHDGTFGYIUOIUIPIOIPUOHIYGUYFGIH
Abodahab
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 

Scalable and efficient cluster based framework for multidimensional indexing

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 166 SCALABLE AND EFFICIENT CLUSTER-BASED FRAMEWORK FOR MULTIDIMENSIONAL INDEXING Aretty Narayana1 , M. Srinivasa Rao2 , R.V.Krishnaiah3 1 M.Tech Student, 2 Associate Professor, 3 Principal, Dept. of CSE, DRKCET, Hyderabad, AP, India [email protected], [email protected], [email protected] Abstract Indexing high dimensional data has its utility in many real world applications. Especially the information retrieval process is dramatically improved. The existing techniques could overcome the problem of “Curse of Dimensionality” of high dimensional data sets by using a technique known as Vector Approximation-File which resulted in sub-optimal performance. When compared with VA- File clustering results in more compact data set as it uses inter-dimensional correlations. However, pruning of unwanted clusters is important. The existing pruning techniques are based on bounding rectangles, bounding hyper spheres have problems in NN search. To overcome this problem Ramaswamy and Rose proposed an approach known as adaptive cluster distance bounding for high dimensional indexing which also includes an efficient spatial filtering. In this paper we implement this high-dimensional indexing approach. We built a prototype application to for proof of concept. Experimental results are encouraging and the prototype can be used in real time applications. Index Terms–Clustering, high dimensional indexing, similarity measures, and multimedia databases ---------------------------------------------------------------------***------------------------------------------------------------------------- 1. INTRODUCTION Data mining has been around for many years for programmatically analyzing huge amount of historical data. Clustering is one of the data mining techniques which is widely used to group similar objects into a clusters. However, clustering is not easy with high-dimensional data which is being produced in many domains such as digital multimedia, CAD/CAM systems, Geographical Information Systems (GIS), stock markets, and medical imaging. The high dimensional data is very huge ranging from 100 GB to 100 TB or more. Enterprises have to deal with such huge data. Such data is accessed using NN queries and spatial queries. Many researches came into existence on queries high dimensional data [1], [2]. These techniques use similarity measures like Euclidean Distance while making clustering. In [3] search performance has been improved using R-tree like structures. All the existing techniques expect the data sets to have uniform distribution of correlations in order to overcome the problem of “curse of dimensionality”. As the nearest and distant neighbors are not distinguishable, indexing such datasets is not possible. The real world data sets on the other hand have non-uniform distribution of correlations. Therefore these data sets can be indexed really using techniques such as Euclidean Distance. The usage of ED is a significant research activity which is used in many applications including content – based image retrieval [4], [5]. In this paper we focused on the real world datasets which are high-dimensional in nature for indexing. 2. PRIOR WORKS In case of low dimensional data techniques such as hyper- rectangles [6], [7], hyper spheres [8] or combination of both [9] were used for NN searches and effective data retrieval. Manyresearches were found in the literature to deal with high- dimensional data. Multi-dimensional indexing always outperforms low dimensional structures as they can access data quickly when compared with sequential scan. However, Weber et al. [10] proved that when dimensionality is more than 10, sequential scan is better than using indexing. The degradation of performance is due to the “curse of dimensionality” concept proposed in [11]. VA-files concept became popular to overcome thisproblem. The VA-File technique divides space into many hyper-rectangular cells and the approximation file holds strings pertaining to encoded bits that represent non-empty cell locations. The vector approximation ultimately leads to scalar quantization which overcomes curse of dimensionality. LDR [12] uses non-linear approximation in order to perform sequential scan. It is achieved by using dimensionality reduction and also clustering. There are some hybrid methods such as IQ-Tree [13] and A-Tree [14] that makes use of both VA and tree based index. Other methods like Pyramid Tree [15], iDistnce [16] and LDC [17] reduce transformations based on local dimensionality. A reference point is used to evaluate partitions made on dataset. Each partition has feature vectors that are indexed using their centroid-distance. When queries are made the spheres increase gradually until the cluster sphere is intersected. For quality reasons, the query processing
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 167 identifies centroid – distances. The radius for search is adjusted in such a way that the NN query returns exact results. Another experiment is made using approximation layer in LDC [17] by creating a box identification code which represents resident points. Once set of candidates are identified, then the B+ tree is used to filter out unwanted points. The resultant elements are finally retrieved in the NN result. Care is taken to control search space in order to reduce disk IO and also ensure that accurate results are retrieved by NN queries. 3. CLUSTER DISTANCE BOUNDING Our procedure to measure distances to clusters is based on the cluster distance bounding proposed by Ramaswamy and Rose [18]. The architectural overview of the frameworkproposed by them is as shown in fig. 1. Fig. 1 –Architecture of Proposed Index Structure (excerpt from [18]) As seen in fig. 1the index structure contains array of cluster centroids which point to the cluster locations. The whole structure is like an index in book which will improve the query processing speed. In the same fashion, the NN queries and other queries on high-dimensional data can be processed faster. The data objects are grouped into number of clusters namely Voronoi clusters. The cluster-based indexing makes it more flexible and adaptable thus making the whole system scalable. This architecture makes the query retrieval very efficient and faster than other existing clustering algorithms and related indexes. Their algorithms are used to implement the prototype which demonstrates the high dimensional indexing process. The first algorithm we used in the prototype application is to make voronoi clusters. The algorithms are presented in fig. 2, fig. 3 and fig. 4. More information about the algorithms and notations used inthe algorithms can be found in [18]. It is as shown in fig. 1 Algorithm 1 VORNOI-CLUSTERS(X, K) 1: // Generic clustering algorithm returns // K cluster centroids {cm}K =1 ---- GenericCluster(X,K) 2: set l=0, X1= Ø, X2= Ø…… XK= Ø 3: while l< |X| do 4: l=l+1 5: //Find the centroid nearest to data element X1 K=arg min d(Xl , Cm) 6: //Move Xl to the corresponding Voronoi partition XK = XK Ụ {Xl} 7: end while 8: return {Xm K =1}, {cm}K =1 Fig. 2–Algorithm for Voronoi Clusters (excerpt from [18]) As can be seen in fig. 2, the algorithm takes a dataset and K value as input and generates and returns required Voronoi clusters. Initially a generic clustering algorithm like K-means is used to get cluster centroids. The algorithm further processes and finally returns Voronoi clusters. In fig. 3 algorithm 2 is presented. It is meant for making kNN search. Algorithm 2 KNN-SEARCH(q) 1: //Initialize set FLAG=0, count = 0,N = 0, kNN = φ 2: //Evaluate query-cluster distance bounds dLB[] ←HyperplaneBound(q) 3: //Sort the query-cluster distance bounds in ascending //order {dsort LB[], o[]} ←SortArray(dLB,’ascend’) 4: while FLAG==0 do 5: count = count + 1 6: //Find the kNNs upto current cluster {Nc, kNN} ←FindkNNsIn(q,Xo[count], kNN) 7: //Update number of elements scanned N = N + Nc 8: //Find the kNN radius dkNN=Farthest(q, kNN) 9: if count < K then 10: if N >k then 11: if dkNN< dsort LB [count + 1] then 12: set FLAG=1 //kNNs found, search ends
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 168 13: end if 14: end if 15: else 16: set FLAG=1 //all clusters scanned, search ends 17: end if 18: end while 19: return kNN Fig. 3 – kNN Search Algorithm As seen in fig. 3, it is evident that the kNN algorithm is meant for performing k-Nearest Neighbor Search. It takes a query as input and returns k-Nearest Neighbors as possible search results. Algorithm 3 is meant for providing some support to algorithm 2. Algorithm 3 FindkNNsIn(q,A, I) 1: set Nc= 0, F=Open(A), kNN = I 2: while !(EOF(F)) do 3: // Load the next cluster page C=LoadNextPage(F) 4: //Merge kNN list with current page Xcand = C Ụ kNN 5: //Find the kNNs within the candidate list kNN[] ←FindkNN(q,Xcand) 6: //Update number of elements scanned Nc= Nc+ |C| 7: end while 8: return Nc, kNN Fig. 4–Algorithm for some intermediary functionality As seen in fig. 4, it is evident that it performs some functionality and returns intermediary results which are used by its caller. Its caller is algorithm 2 that is meant for k-NN search which returns k-Nearest Neighbors that satisfy the given query. 4. RESULTS We built a prototype application to demonstrate the proof of concept of the paper. We have used many real time data sets to apply the index structure proposed in [18]. The datasets used in experiments include SENSORS, HISTOGRAM, AERIAL, CORTINA and BIO-RETINA. The details of dimensions, number of vectors and size in terms of pages of these data sets are presented in table 1. Table 1- Dataset details As can be seen in table 1, the dimensionality of data sets and the number of vectors involved in each dataset are given. The environment used for developing prototype application includes a PC with 4GB RAM, Core 2 Dual processor running Windows XP operating system. Java platform is used to build the application. NetBeans is used as an IDE (Integrated Development Environment). Experiments are made in terms of number of sequential pages scanned, number of random IO operations, with KNNs and various datasets. Fig. 5–IO Performance of Distance Bounds (BIO-RETINA dataset) As can be seen in fig.5, the horizontal axis represents number of random IOs while the vertical axis represents number of sequential pages. As shown in results hyperlane bounds outperform the other bounds. Fig. 6 – IO Performance of Distance Bounds (AERIAL dataset) 0 500 1000 1500 2000 2500 3000 3500 1 2 3 4 5 6 7 8 NumberofSequential Pages No.Of Random IOS (log scale) MBR Sphere Bound Hyperplane(f wd.comp.) Hyperplane(f ull) 0 2000 4000 6000 8000 1 2 3 4 5 6 7 8 9 Numberof SequentialPages No.of Random IOS(log scale) MBR Sphere Bound Hyperplane( fwd.comp.) Hyperplane( full)
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 169 As can be seen in fig.6, the horizontal axis represents number of random IOs while the vertical axis represents number of sequential pages. As shown in results hyperlane bounds outperform the other bounds. Fig. 7 – IO Performance of Distance Bounds (SENSORS dataset) As can be seen in fig. 7, the horizontal axis represents number of random IOs while the vertical axis represents number of sequential pages. As shown in results hyperlane bounds outperform the other bounds. Fig. 8 – IO Performance of Distance Bounds (SENSORS dataset) As can be seen in fig. 8, the horizontal axis represents number of random IOs while the vertical axis represents number of sequential pages. As shown in results hyperlane bounds outperform the other bounds. CONCLUSIONS Dealing with real multi-dimensional datasets that have correlations distributed in non-uniform fashion is not easy. Indexing such data is a challenging task. The existing indexing methods used VA-File through scalar quantization. However, this approach is proved to be suboptimal. Therefore, in this paper, we implement a new approach proposed by Ramaswamy and Rose [18] which groups datasets into Voronoi clusters. It is achieved by using similarity measures such as Mahalanobis and Euclidean. This has resulted in the reduction of IOs. We also built a prototype application which demonstrates the utility of the proposed approach. We made experiments using various multi-dimensional data sets. The empirical results revealed that the indexing approach followed in the prototype is effective and can be used in the real world applications. REFERENCES [1] K. S. Beyer, J. Goldstein, R. Ramakrishnan, and U. Shaft, “When is“nearest neighbor” meaningful?” in ICDT, 1999, pp. 217–235. [2] C. C. Aggarwal, A. Hinneburg, and D. A. Keim, “On the surprisingbehavior of distance metrics in high dimensional spaces,” in ICDT, 2001,pp. 420–434. [3] B. U. Pagel, F. Korn, and C. Faloutsos, “Deflating the dimensionalitycurse using multiple fractal dimensions,” in ICDE, 2000, pp. 589–598. [4] T. Huang and X. S. Zhou, “Image retrieval with relevance feedback:From heuristic weight adjustment to optimal learning methods,” in ICIP,vol. 3, 2001, pp. 2–5. [5] J. Davis, B. Kulis, P. Jain, S. Sra, and I. Dhillon, “Information-theoreticmetric learning,” in ICML, 2007, pp. 209–216. [6] A. Guttman, “R-trees: A dynamic index structure for spatial searching.”in SIGMOD, 1984, pp. 47–57. [7] N. Beckmann, H. Kriegel, R. Schneider, and B. Seeger, “The R*-tree:an efficient and robust access method for points and rectangles,” inSIGMOD, 1990, pp. 322–331. [8] D. A. White and R. Jain, “Similarity indexing with the SS- tree,” inICDE, 1996, pp. 516–523. [9] N. Katayama and S. Satoh, “The SR-tree: An index structure for highdimensionalnearest neighbor queries.” in SIGMOD, May 1997, pp. 369–380. [10] R. Weber, H. Schek, and S. Blott, “A quantitative analysis and performancestudy for similarity-search methods in high-dimensional spaces.”in VLDB, August 1998, pp. 194– 205. [11] R. Bellman, Adaptive Control Processes: A Guided Tour. Princeton,NJ: Princeton University Press, 1961. [12] K. Chakrabarti and S. Mehrotra, “Local dimensionality reduction: A newapproach to indexing high dimensional spaces.” in VLDB, September2000, pp. 89–100. [13] S. Berchtold, C. Bohm, H. V. Jagadish, H. P. Kriegel, and J. Sander,“Independent Quantization: An index compression technique for highdimensionaldata spaces,” in ICDE, 2000, pp. 577–588. [14] Y. Sakurai, M. Yoshikawa, S. Uemura, and H. Kojima, “The A-tree: Anindex structure for high-dimensional spaces using relative approximation,”in VLDB, September 2000, pp. 516–526. 0 200 400 600 800 1000 1200 1400 1 2 3 4 NumberofSequentialPages No.of Random IOS(log scale) MBR Sphere Bound Hyperplane(fwd.c omp.) Hyperplane(full) 0 0.5 1 1.5 2 2.5 1 2 3 4 5 6 7 NumberofSequential Pages No.of Random IOS(log scale) 10NN 20NN 50NN
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 02 Issue: 08 | Aug-2013, Available @ http://www.ijret.org 170 [15] S. Berchtold, C. Bohm, and H. Kriegel, “The Pyramid- technique:Towards breaking the curse of dimensionality,” in SIGMOD, 1998, pp.142–153. [16] C. Yu, B. C. Ooi, K. L. Tan, and H. V. Jagadish, “Indexing the distance:An efficient method to knn processing.” in VLDB, September 2001, pp.421–430. [17] N. Koudas, B. C. Ooi, H. T. Shen, and A. K. H. Tung, “LDC: Enablingsearch by partial distance in a hyper- dimensional space.” in ICDE, 2004,pp. 6–17. [18] Sharadh Ramaswamyand Kenneth Rose, “Adaptive Cluster Distance Bounding for High Dimensional Indexing”. IEEE TRANSACTIONS ON KNOWLEDGE AND DATA ENGINEERING, VOL.23, NO. 6, June 2011. P1-15. BIOGRAPHIES: Aretty Narayana has completed B.Tech (E.C.E) from Srinivas Reddy Institute of Technology and pursuing M.Tech (C.S.E) in DRK College of Engineering and Technology, JNTUH, Hyderabad, Andhra Pradesh, India. His main research interest includes Data Mining, Database and DWH. M. Srinivasa Rao is working as an Associate Professor in DRK College of Engineering and Technology, JNTUH, Hyderabad, Andhra Pradesh, India. He is pursuing Ph.D in Information Security. He has completed M.Tech (C.S.E) from JNTUH. His main research interest includes Information Security and Computer Ad-Hoc Networks. Dr. R. V. Krishnaiah, did M.Tech (EIE) from NIT Waranagal, MTech (CSE) form JNTU, Ph.D, from JNTU Ananthapur, He has memberships in professional bodies MIE, MIETE, MISTE. His main research interests include Image Processing, Security systems, Sensors, Intelligent Systems, Computer networks, Data mining, Software Engineering, network protection and security control. He has published many papers and Editorial Member and Reviewer for some national and international journals.