A PSO Optimized Layered Approach for Parametric Clustering on Weather Dataset

Size: px
Start display at page:

Download "A PSO Optimized Layered Approach for Parametric Clustering on Weather Dataset"

Transcription

1 Vol.3, Issue.1, Jan-Feb. 013 pp ISSN: A PSO Optimize Layere Approach for Parametric Clustering on Weather Dataset Shikha Verma, 1 Kiran Jyoti 1 Stuent, Guru Nanak Dev Engineering College Luhiana, Punjab Asstt. Prof, Guru Nanak Dev Engineering College Luhiana, Punjab Abstract: Clustering is the process to present the ata in an effective an organize way. There are number of existing clustering approaches but most of them suffer with problem of ata istribution. If the istribution is non linear it gives impurities in clustering process. The propose work is about to improve the accuracy of such clustering algorithm. Here we are presenting the work on time series oriente atabase to present the work. Here we are presenting the three layer architecture, where first layer perform the partitioning base on time series an secon layer will perform the basic clustering. The PSO is finally implemente to remove the impurities from the ataset. Keywors: Clustering, CMeans, KMeans, Dataset, Feature I. INTRODUCTION Clustering is a funamental problem in machine learning an has been approache in many ways. Clustering can be consiere the most important unsupervise learning technique; so, as every other problem of this kin, it eals with fining a structure in a collection of unlabele ata. There are ifferent clustering algorithms.the k-centers clustering algorithm is one of the popular algorithm. Clustering is use because following some reasons: Simplifications Pattern etection Useful in ata concept construction Unsupervise learning process A new clustering approach calle Affinity Propagation was introuce by Brenen J. Frey an Delbert Dueck in 007. Affinity Propagation has many avantages over other clustering algorithms like simplicity, general applicability, lower errors an goo performance. Affinity Propagation takes as input a collection of real value similarities between ata points. It is istance base clustering algorithm an similarity measure are calculate in the form of Eucliean istance. Real value messages are exchange between ata points until a high quality set of exemplars an corresponing clusters graually emerges. Each ata point i sens a responsibility r (i, k) to caniate exemplar inicating how much it favors the caniate exemplar over other caniates.availability a(i,k) is sent from caniate exemplar to ata points inicating how well the caniate exemplar can act as a cluster center for the ata points. At the en of each iteration, availability an responsibility are combine to ientify the exemplar. r(i,k)=s(i,k)-max{ a(i,k )+s(i.k )} where s(i,k) is the similarity between ata point i an caniate exemplar k,a(i,k ) is availability of other caniate exemplar k to ata point i, s(i,k ) is the similarity between ata point i an other caniate exemplar k. a(i,k)= min{0,r(k,k)+ max{0,r(i,k)}} where a(i,k) is the availability of caniate exemplar k to ata point i,r(k,k) is self responsibility of caniate exemplar k, r(i,k) is the responsibility from other ata point I to the sane caniate exemplar k. an other caniate exemplar k a(k,k) = max{0.r(i,k)} Where a (k, k) is self availability of caniate exemplar k an r(i,k) is the responsibility from other ata point I to the sane caniate exemplar k. Clustering is the process of organizing objects into groups whose members are similar in some way. A cluster is therefore a collection of objects which are similar between them an are issimilar to the objects belonging to other clusters A. Clustering as unsupervise classification As for Classification, we have a multivariate ataset; a set of cases, each of which has multiple attributes/variables. Each case is represente as a recor, (or row), an to each attribute variable there is an associate column. The whole comprises the caseset. The attributes may be of any type; nominal, orinal, continuous, etc, but the in Cluster Analysis none of these attributes is taken to be a classification variable. The objective is to obtain a rule which puts all the cases into groups, or clusters. it may then efine a nominal classification variable which assigns a istinct label to each cluster. We o not know the final classification variable before we o the clustering; the objective is to efine such a variable. Hence, clustering is sai to be an unsupervise classification metho; unsupervise, because we o not know the classes of any of the cases before we o the clustering. We o not have class values to guie (or "supervise") the training of our algorithm to obtain classification rules. We shoul note that one or more of the attributes in our case set may in fact be nominal classification variables. However, as far as our Clustering of the case set is concerne they are just nominal variables an are not treate as classification variables for the clustering analysis. 504 Page

2 Vol.3, Issue.1, Jan-Feb. 013 pp ISSN: B. Distance Matrices If we have two cases, C1 an C say, which have continuous variables x an y, taking values (x 1, y 1 ) an (x, y ) respectively, then we can plot the two cases in x-y space as in Figure 1. Figure 1: Eucliean istance Using Pythagorus's Theorem, we may write ( x x ) ( y y ) This is the Eucliean istance between the two cases, in the x-y state-space. We often say that we have efine a "istance metric" when we have efine the formula for the istance between two cases. If the two cases are characterize by p continuous variables ( x 1, x, x i, x p say) rather than two (i.e. x, y), [Note: x x 1 so x(case ) x 1 (case ) x 1 (); similarly y x ()], then we may generalize the Eucliean istance to: p ( x i () x i (1)) 1 i 1 This can be generalize further to the Minkowski metric: p m m ( x i () x 1 i (1)) i 1 where x enotes the absolute value of x, (i.e. the size, without the sign). C. Stanarization If the values of the variables are in ifferent units then it is likely that some of the variables will take vary large values, an hence the "istance" between two cases, on this variable, can be a big number. Other variables may be small in value, or not vary much between cases, in which case the ifference in this variable between the two cases will be small. Hence in the istance metrics consiere above, are epenent on the choice of units for the variables involve. The variables with high variability will ominate the metric. We can overcome this by stanarizing the variables. D. Similarity Measure A measure of the similarity (or closeness) between two cases must take its highest value when the two cases have ientical values of all variables, (i.e. when the two cases are coincient in multivariable space). The similarity measure must ecrease monotonically as the case variable values increase, i.e. as the istance between the cases increases. Hence, any monotonically ecreasing function of istance will be a possible similarity measure. If we want the similarity measure to take value 1 when the cases are coincient, then we might consier: D. Particle Swarm Optimization PSO was first propose by Kenney an Eberhart [9]. The main principle behin this optimisation metho is communication. In PSO there is a group of particles that look for the best solution within the search area. If a particle fins a better value for the objective function, the particle will communicate this result to the rest of the particles. All the particles in the PSO have memory an they moify these memorize values as the optimisation routine avances. The recore values are: velocity (V), position (p), best previous performance (pbest) an best group performance (gbest). The velocity escribes how fast a particle shoul move from its current position which contains the coorinates of the particle. The last two parameters are the recore best values that have been foun uring the iterations. A simple PSO algorithm is expresse as [9]: II. LITERATURE SURVEY Lei Jiang efine a work on Hybri Aaptive Niche to Improve Particle Swarm Optimization Clustering Algorithm,. This paper use aaptive niche particle swarm algorithm to improve clustering An it is also stuie the impact of ifferent fitness optimization function to clustering ata [1]. Shuai Li, Xin-Jun Wang, Ying Zhang efine a work on X-SPA: Spatial Characteristic PSO Clustering Algorithm with Efficient Estimation of the Number of Cluster. In this paper author unifies Particle Swarm optimization (PSO) algorithm an Bayesian Information Criterion (BIC), proposes a numeric clustering algorithm. Chaos an space characteristic ieas are involve in the algorithm to avoi local optimal problem. Furthermore, BIC is also involve to provie an efficient estimation of the number of cluster []. Rehab F. Abel-Kaer presente a work on Genetically Improve PSO Algorithm for Efficient Data Clustering. The propose algorithm combines the ability of the globalize searching of the evolutionary algorithms an the fast convergence of the k-means algorithm an can avoi the rawback of both. The performance of the propose algorithm is evaluate through several benchmark atasets. The experimental results show that the propose algorithm is highly forceful an outperforms the previous approaches such as SA, ACO, PSO an k-means for the partitione clustering problem [3]. Surat Srinoy presente a work on Combination Artificial Ant Clustering an K- PSO Clustering Approach to Network Security Moel, His paper presents natural base ata mining algorithm approach to ata clustering. Artificial ant clustering algorithm is use to initially create raw clusters an then these clusters are refine using k-mean particle swarm optimization (KPSO). KPSO that has been evelope as evolutionary-base clustering technique [4]. 505 Page

3 Vol.3, Issue.1, Jan-Feb. 013 pp ISSN: Shafiq Alam has efine a work on Particle Swarm Optimization Base Hierarchical Agglomerative Clustering The propose algorithm exploits the swarm intelligence of cooperating agents in a ecentralize environment. The experimental results were compare with benchmark clustering techniques, which inclue K-means, PSO clustering, Hierarchical Agglomerative clustering (HAC) an Density-Base Spatial Clustering of Applications with Noise (DBSCAN). The results are evience of the effectiveness of Swarm base clustering an the capability to perform clustering in a hierarchical agglomerative manner [5]. Alireza Ahmayfar presente a novel work on Combining PSO an k-means to Enhance Data Clustering. In this paper we propose a clustering metho base on combination of the particle swarm optimization (PSO) an the k-mean algorithm. PSO algorithm was showe to successfully converge uring the initial stages of a global search, but aroun global optimum, the search process will become very slow. On the contrary, k-means algorithm can achieve faster convergence to optimum solution [6]. III. PROPOSED APPROACH The propose work is improvement of the ata clustering algorithm with effect of Particle Swarm Optimization. Here the improvement is expecte in terms of accuracy an the efficiency. The propose work will be affecte with 3 imensions of improvement in ata clustering. As the first imension the ata will be segmente accoring to the time series. Such as in case of temperature the time series will be accoring to the seasonal parameters. Once the ata is segmente, The clustering algorithm will be implemente on it. Figure : Three Dimensional Clustering The clustering algorithm will perform the actual ata categorization accoring to the ata values. Here either C-Means or the K-Means algorithm will be implemente base on the ataset. This work will be one only once. The clustering algorithm is the see of the propose algorithm. Once the clustering one the refinement over the ataset is performe by the PSO. The PSO will use the output of the clustering algorithm an generate a Hybri algorithm. The work of PSO is first to fin the best fitness function an then pass this clustere ataset on this fitness function. The fitness function will be generate respective to the cluster as well as the whole ataset. The fitness function will accept a particular ata item an verify that whether it shoul belong to the cluster or not after examine the cluster ata. To implement the PSO some parameters are require. These parameters will be ecie accoring to the ataset an the eficiencies in the clustere ataset. The basic algorithm for the PSO that will be implemente is given as uner 1: Initialize a population array of particles with ranom positions an velocities on D- imensions in the search space. : For each particle, evaluate the esire optimization fitness function in D variables. 3: Compare particle s fitness evaluation with its pbest i. If current value is better than pbest i, then set pbest i equal to the current value, an p i equal to the current location x i in D- imensional space. 4: Ientify the particle in the neighborhoo with the best success so far, an assign its inex to the variable g. 5: Change the velocity an position of the particle accoring to the equation (3) 6: If a criterion is met (usually a sufficiently goo fitness or a maximum number of iterations), exit. 7: If criteria are not met, go to step The presente work is implemente for the weather ataset uner the ifferent attributes. These attributes inclues the temperature, rainfall, humiity etc. The process on this ataset is performe uner a three layere approach. The algorithmic process is given as uner Table 1: Propose Algorithm Step 1: Accept Whole Dataset As Input Step. Arrange the Dataset Accoring to Years Step 3: Fin the Instance Count for Each Year Step 4: Fin the ThresholCount Value for whole Dataset Step 5: Remove the Year Dataset Having Count(Year)<ThresholCount Step 6: Represent the Remaing as Training Dataset Step 7: Select N-points as initial centrois Step 8: Repeat a. Form N-clusters by assigning each point to its closest centroi b. Recompute the centroi of each cluster Step 9: Until centroi oes not change Step10: Run PSO on initial clusters generate by Clustering Algorithms a. Initialize the Particles (Clusters) b. Initialize Population size an maximum iterations c. Initialize clusters to input ata. Evaluate fitness value an accoringly fin personal best an global best position Step 11: Start with an initial set of particles, typically ranomly istribute throughout the esign space. Step 1: Calculate a velocity vector for each particle in the swarm. Step 13: Upate the position of each particle, using its previous position an the upate velocity vector. Step 14: Repeat From Step 10 an Exit on reaching stopping criteria (maximum number of iterations). 506 Page

4 Vol.3, Issue.1, Jan-Feb. 013 pp ISSN: IV. RESULTS The presente clustering approach is implemente on weather ataset in mat lab 7.8 environment. The initial ataset contains about instances an having 7 attributes. The ataset is containing the ata between years 1970 an 010. As the first layer the time series segmentation is performe an the ata values of specific years are prune as these are foun less effective. The ataset remaine after the pruning process is shown in table with escription of specific years. Table : Prune Dataset 1971, 197, 1974, 1976, 1977, 1978, 1979, 1981, 1984, 1986, 1987, 1988, 1991, 1993, 1994, 1996, 1998, 000, 001, 003, 005, 009 Initial ata contains instances an after the pruning process about 6700 recors left. To perform the pruning, the time series segmentation is been implemente in this work. After the pruning process, the C-Menas clustering is performe over the ataset. In this work, we have ivie the complete ataset in 4 clusters uner the ifferent attributes. Figure 3, 4, 5 are showing the outcome of 1 st cluster uner three attributes respectively i.e. temperature, rain an humity. Figure 4: Cluster 1(Rain) Figure 4 is showing the outcome of clustering on Rain ataset. As we can see in this figure, the ata obtaine in cluster 1 is shown. This particular cluster is having about 1400 instances an contains the temperature values between 150 to 160. Out of 6700 instances, only 1400 instances are having that much of rainfall. Figure 5: Cluster 1(Humiity) Figure 3: Cluster 1(Temperature) As we can see figure 3 is showing the outcome of clustering on temperature ataset. As we can see in this figure, the ata obtaine in cluster 1 is shown. This particular cluster is having about 1600 instances an contains the temperature values between to 5. As we can see figure 5 is showing the outcome of clustering on Humiity ataset. As we can see in this figure, the ata obtaine in cluster 1 is shown. This particular cluster is having about 1500 instances an contains the temperature values between 0 to 50. V. CONCLUSION The presente work is about to improve the clustering process by implementing a three layere approach. The first layer is the filtration layer to ientify the most appropriate ataset on which clustering will be performe. On the secon layer, the actual clustering process is performe. Finally, the PSO is use to ajust the bounary values an to optimize the outcome of clustering process. 507 Page

5 Vol.3, Issue.1, Jan-Feb. 013 pp ISSN: REFERENCES [1] Jiang Lixin Ding, Hybri Aaptive Niche to Improve Particle Swarm Optimization Clustering Algorithm, / IEEE [] Shuai Li, Xin-Jun Wang, X-SPA: Spatial Characteristic PSO Clustering Algorithm with Efficient Estimation of the Number of Cluster, Fifth International Conference on Fuzzy Systems an Knowlege Discovery, / IEEE [3] Rehab F. Abel-Kaer, Genetically Improve PSO Algorithm for Efficient Data Clustering, 010 Secon International Conference on Machine Learning an Computing, / IEEE [4] Surat Srinoy, Combination Artificial Ant Clustering an K- PSO Clustering Approach to Network Security Moel, IEEE 006 [5] Shafiq Alam, Gillian Dobbie, Patricia Rile, M. Asif Naeem, Particle Swarm Optimization Base Hierarchical Agglomerative Clustering,010 IEEE/WIC/ACM International Conference on Web Intelligence an Intelligent Agent Technology [6] Alireza Ahmayfar, Hamireza Moares, Combining PSO an k-means to Enhance Data Clustering,008 Internatioal Symposium on Telecommunications, / IEEE [7] [7] Dongyun Wang, Clustering Research of fabric eformation comfort using bi-swarm PSO algorithm, Worl Congress on Intelligent Control an Automation July , Jinan, China [8] [8] Junyan Chen, Research on Application of Clustering Algorithm Base on PSO for the Web Usage Pattern, / IEEE [9] [9] Jinxin Dong, Minyong Qi, A New Clustering Algorithm Base on PSO with the Jumping Mechanism of SA, 009 Thir International Symposium on Intelligent Information Technology Application [10] Brenan J. Frey an Delbert Dueck, Clustering by Passing essages Between Data Points University of Toronto Science,Vol 315, , February 007. [11] Bryan Conroy an Yongxin Taylor Xi. Semi Supervise Clustering Using Affinity Propagation. August 4, 009. [1] Supporting Material available at [13] Delbert Dueck an Brenan J. Frey. Non-metric affinity propagation for unsupervise image categorization. In IEEE Int. Conf. Computer Vision (ICCV), Page

Image Segmentation using K-means clustering and Thresholding

Image Segmentation using K-means clustering and Thresholding Image Segmentation using Kmeans clustering an Thresholing Preeti Panwar 1, Girhar Gopal 2, Rakesh Kumar 3 1M.Tech Stuent, Department of Computer Science & Applications, Kurukshetra University, Kurukshetra,

More information

Clustering using Particle Swarm Optimization. Nuria Gómez Blas, Octavio López Tolic

Clustering using Particle Swarm Optimization. Nuria Gómez Blas, Octavio López Tolic 24 International Journal Information Theories an Applications, Vol. 23, Number 1, (c) 2016 Clustering using Particle Swarm Optimization Nuria Gómez Blas, Octavio López Tolic Abstract: Data clustering has

More information

Particle Swarm Optimization Based on Smoothing Approach for Solving a Class of Bi-Level Multiobjective Programming Problem

Particle Swarm Optimization Based on Smoothing Approach for Solving a Class of Bi-Level Multiobjective Programming Problem BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 17, No 3 Sofia 017 Print ISSN: 1311-970; Online ISSN: 1314-4081 DOI: 10.1515/cait-017-0030 Particle Swarm Optimization Base

More information

Fast Fractal Image Compression using PSO Based Optimization Techniques

Fast Fractal Image Compression using PSO Based Optimization Techniques Fast Fractal Compression using PSO Base Optimization Techniques A.Krishnamoorthy Visiting faculty Department Of ECE University College of Engineering panruti rishpci89@gmail.com S.Buvaneswari Visiting

More information

Particle Swarm Optimization with Time-Varying Acceleration Coefficients Based on Cellular Neural Network for Color Image Noise Cancellation

Particle Swarm Optimization with Time-Varying Acceleration Coefficients Based on Cellular Neural Network for Color Image Noise Cancellation Particle Swarm Optimization with Time-Varying Acceleration Coefficients Base on Cellular Neural Network for Color Image Noise Cancellation Te-Jen Su Jui-Chuan Cheng Yang-De Sun 3 College of Information

More information

Evolutionary Optimisation Methods for Template Based Image Registration

Evolutionary Optimisation Methods for Template Based Image Registration Evolutionary Optimisation Methos for Template Base Image Registration Lukasz A Machowski, Tshilizi Marwala School of Electrical an Information Engineering University of Witwatersran, Johannesburg, South

More information

Cluster Center Initialization Method for K-means Algorithm Over Data Sets with Two Clusters

Cluster Center Initialization Method for K-means Algorithm Over Data Sets with Two Clusters Available online at www.scienceirect.com Proceia Engineering 4 (011 ) 34 38 011 International Conference on Avances in Engineering Cluster Center Initialization Metho for K-means Algorithm Over Data Sets

More information

Skyline Community Search in Multi-valued Networks

Skyline Community Search in Multi-valued Networks Syline Community Search in Multi-value Networs Rong-Hua Li Beijing Institute of Technology Beijing, China lironghuascut@gmail.com Jeffrey Xu Yu Chinese University of Hong Kong Hong Kong, China yu@se.cuh.eu.h

More information

APPLYING GENETIC ALGORITHM IN QUERY IMPROVEMENT PROBLEM. Abdelmgeid A. Aly

APPLYING GENETIC ALGORITHM IN QUERY IMPROVEMENT PROBLEM. Abdelmgeid A. Aly International Journal "Information Technologies an Knowlege" Vol. / 2007 309 [Project MINERVAEUROPE] Project MINERVAEUROPE: Ministerial Network for Valorising Activities in igitalisation -

More information

6 Gradient Descent. 6.1 Functions

6 Gradient Descent. 6.1 Functions 6 Graient Descent In this topic we will iscuss optimizing over general functions f. Typically the function is efine f : R! R; that is its omain is multi-imensional (in this case -imensional) an output

More information

Classifying Facial Expression with Radial Basis Function Networks, using Gradient Descent and K-means

Classifying Facial Expression with Radial Basis Function Networks, using Gradient Descent and K-means Classifying Facial Expression with Raial Basis Function Networks, using Graient Descent an K-means Neil Allrin Department of Computer Science University of California, San Diego La Jolla, CA 9237 nallrin@cs.ucs.eu

More information

Using Vector and Raster-Based Techniques in Categorical Map Generalization

Using Vector and Raster-Based Techniques in Categorical Map Generalization Thir ICA Workshop on Progress in Automate Map Generalization, Ottawa, 12-14 August 1999 1 Using Vector an Raster-Base Techniques in Categorical Map Generalization Beat Peter an Robert Weibel Department

More information

Blind Data Classification using Hyper-Dimensional Convex Polytopes

Blind Data Classification using Hyper-Dimensional Convex Polytopes Blin Data Classification using Hyper-Dimensional Convex Polytopes Brent T. McBrie an Gilbert L. Peterson Department of Electrical an Computer Engineering Air Force Institute of Technology 9 Hobson Way

More information

New Version of Davies-Bouldin Index for Clustering Validation Based on Cylindrical Distance

New Version of Davies-Bouldin Index for Clustering Validation Based on Cylindrical Distance New Version of Davies-Boulin Inex for lustering Valiation Base on ylinrical Distance Juan arlos Roas Thomas Faculta e Informática Universia omplutense e Mari Mari, España correoroas@gmail.com Abstract

More information

Selection Strategies for Initial Positions and Initial Velocities in Multi-optima Particle Swarms

Selection Strategies for Initial Positions and Initial Velocities in Multi-optima Particle Swarms ACM, 2011. This is the author s version of the work. It is poste here by permission of ACM for your personal use. Not for reistribution. The efinitive version was publishe in Proceeings of the 13th Annual

More information

Study of Network Optimization Method Based on ACL

Study of Network Optimization Method Based on ACL Available online at www.scienceirect.com Proceia Engineering 5 (20) 3959 3963 Avance in Control Engineering an Information Science Stuy of Network Optimization Metho Base on ACL Liu Zhian * Department

More information

Data Mining: Concepts and Techniques. Chapter 7. Cluster Analysis. Examples of Clustering Applications. What is Cluster Analysis?

Data Mining: Concepts and Techniques. Chapter 7. Cluster Analysis. Examples of Clustering Applications. What is Cluster Analysis? Data Mining: Concepts an Techniques Chapter Jiawei Han Department of Computer Science University of Illinois at Urbana-Champaign www.cs.uiuc.eu/~hanj Jiawei Han an Micheline Kamber, All rights reserve

More information

Online Appendix to: Generalizing Database Forensics

Online Appendix to: Generalizing Database Forensics Online Appenix to: Generalizing Database Forensics KYRIACOS E. PAVLOU an RICHARD T. SNODGRASS, University of Arizona This appenix presents a step-by-step iscussion of the forensic analysis protocol that

More information

A Novel Density Based Clustering Algorithm by Incorporating Mahalanobis Distance

A Novel Density Based Clustering Algorithm by Incorporating Mahalanobis Distance Receive: November 20, 2017 121 A Novel Density Base Clustering Algorithm by Incorporating Mahalanobis Distance Margaret Sangeetha 1 * Velumani Paikkaramu 2 Rajakumar Thankappan Chellan 3 1 Department of

More information

A Revised Simplex Search Procedure for Stochastic Simulation Response Surface Optimization

A Revised Simplex Search Procedure for Stochastic Simulation Response Surface Optimization 272 INFORMS Journal on Computing 0899-1499 100 1204-0272 $05.00 Vol. 12, No. 4, Fall 2000 2000 INFORMS A Revise Simplex Search Proceure for Stochastic Simulation Response Surface Optimization DAVID G.

More information

THE APPLICATION OF ARTICLE k-th SHORTEST TIME PATH ALGORITHM

THE APPLICATION OF ARTICLE k-th SHORTEST TIME PATH ALGORITHM International Journal of Physics an Mathematical Sciences ISSN: 2277-2111 (Online) 2016 Vol. 6 (1) January-March, pp. 24-6/Mao an Shi. THE APPLICATION OF ARTICLE k-th SHORTEST TIME PATH ALGORITHM Hua Mao

More information

MEASURING THE PERFORMANCE OF SIMILARITY PROPAGATION IN AN SEMANTIC SEARCH ENGINE

MEASURING THE PERFORMANCE OF SIMILARITY PROPAGATION IN AN SEMANTIC SEARCH ENGINE ISSN: 9-6956 (ONLINE) DOI: 10.1917/isc.013.0096 ICTACT JOURNAL ON SOFT COMPUTING, OCTOBER 013, VOLUME: 04, ISSUE: 01 MEASURING THE PERFORMANCE OF SIMILARITY PROPAGATION IN AN SEMANTIC SEARCH ENGINE S.

More information

A New Search Algorithm for Solving Symmetric Traveling Salesman Problem Based on Gravity

A New Search Algorithm for Solving Symmetric Traveling Salesman Problem Based on Gravity Worl Applie Sciences Journal 16 (10): 1387-1392, 2012 ISSN 1818-4952 IDOSI Publications, 2012 A New Search Algorithm for Solving Symmetric Traveling Salesman Problem Base on Gravity Aliasghar Rahmani Hosseinabai,

More information

Short-term prediction of photovoltaic power based on GWPA - BP neural network model

Short-term prediction of photovoltaic power based on GWPA - BP neural network model Short-term preiction of photovoltaic power base on GWPA - BP neural networ moel Jian Di an Shanshan Meng School of orth China Electric Power University, Baoing. China Abstract In recent years, ue to China's

More information

A FUZZY FRAMEWORK FOR SEGMENTATION, FEATURE MATCHING AND RETRIEVAL OF BRAIN MR IMAGES

A FUZZY FRAMEWORK FOR SEGMENTATION, FEATURE MATCHING AND RETRIEVAL OF BRAIN MR IMAGES A FUZZY FRAMEWORK FOR SEGMENTATION, FEATURE MATCHING AND RETRIEVAL OF BRAIN MR IMAGES Archana.S 1 an Srihar.S 2 1 Department of Information Science an Technology, College of Engineering, Guiny archana.santhira@gmail.com

More information

Shift-map Image Registration

Shift-map Image Registration Shift-map Image Registration Svärm, Linus; Stranmark, Petter Unpublishe: 2010-01-01 Link to publication Citation for publishe version (APA): Svärm, L., & Stranmark, P. (2010). Shift-map Image Registration.

More information

Solution Representation for Job Shop Scheduling Problems in Ant Colony Optimisation

Solution Representation for Job Shop Scheduling Problems in Ant Colony Optimisation Solution Representation for Job Shop Scheuling Problems in Ant Colony Optimisation James Montgomery, Carole Faya 2, an Sana Petrovic 2 Faculty of Information & Communication Technologies, Swinburne University

More information

Random Clustering for Multiple Sampling Units to Speed Up Run-time Sample Generation

Random Clustering for Multiple Sampling Units to Speed Up Run-time Sample Generation DEIM Forum 2018 I4-4 Abstract Ranom Clustering for Multiple Sampling Units to Spee Up Run-time Sample Generation uzuru OKAJIMA an Koichi MARUAMA NEC Solution Innovators, Lt. 1-18-7 Shinkiba, Koto-ku, Tokyo,

More information

FINDING OPTICAL DISPERSION OF A PRISM WITH APPLICATION OF MINIMUM DEVIATION ANGLE MEASUREMENT METHOD

FINDING OPTICAL DISPERSION OF A PRISM WITH APPLICATION OF MINIMUM DEVIATION ANGLE MEASUREMENT METHOD Warsaw University of Technology Faculty of Physics Physics Laboratory I P Joanna Konwerska-Hrabowska 6 FINDING OPTICAL DISPERSION OF A PRISM WITH APPLICATION OF MINIMUM DEVIATION ANGLE MEASUREMENT METHOD.

More information

Lecture 1 September 4, 2013

Lecture 1 September 4, 2013 CS 84r: Incentives an Information in Networks Fall 013 Prof. Yaron Singer Lecture 1 September 4, 013 Scribe: Bo Waggoner 1 Overview In this course we will try to evelop a mathematical unerstaning for the

More information

Fast Window Based Stereo Matching for 3D Scene Reconstruction

Fast Window Based Stereo Matching for 3D Scene Reconstruction The International Arab Journal of Information Technology, Vol. 0, No. 3, May 203 209 Fast Winow Base Stereo Matching for 3D Scene Reconstruction Mohamma Mozammel Chowhury an Mohamma AL-Amin Bhuiyan Department

More information

MORA: a Movement-Based Routing Algorithm for Vehicle Ad Hoc Networks

MORA: a Movement-Based Routing Algorithm for Vehicle Ad Hoc Networks : a Movement-Base Routing Algorithm for Vehicle A Hoc Networks Fabrizio Granelli, Senior Member, Giulia Boato, Member, an Dzmitry Kliazovich, Stuent Member Abstract Recent interest in car-to-car communications

More information

d 3 d 4 d d d d d d d d d d d 1 d d d d d d

d 3 d 4 d d d d d d d d d d d 1 d d d d d d Proceeings of the IASTED International Conference Software Engineering an Applications (SEA') October 6-, 1, Scottsale, Arizona, USA AN OBJECT-ORIENTED APPROACH FOR MANAGING A NETWORK OF DATABASES Shu-Ching

More information

A Neural Network Model Based on Graph Matching and Annealing :Application to Hand-Written Digits Recognition

A Neural Network Model Based on Graph Matching and Annealing :Application to Hand-Written Digits Recognition ITERATIOAL JOURAL OF MATHEMATICS AD COMPUTERS I SIMULATIO A eural etwork Moel Base on Graph Matching an Annealing :Application to Han-Written Digits Recognition Kyunghee Lee Abstract We present a neural

More information

filtering LETTER An Improved Neighbor Selection Algorithm in Collaborative Taek-Hun KIM a), Student Member and Sung-Bong YANG b), Nonmember

filtering LETTER An Improved Neighbor Selection Algorithm in Collaborative Taek-Hun KIM a), Student Member and Sung-Bong YANG b), Nonmember 107 IEICE TRANS INF & SYST, VOLE88 D, NO5 MAY 005 LETTER An Improve Neighbor Selection Algorithm in Collaborative Filtering Taek-Hun KIM a), Stuent Member an Sung-Bong YANG b), Nonmember SUMMARY Nowaays,

More information

Shift-map Image Registration

Shift-map Image Registration Shift-map Image Registration Linus Svärm Petter Stranmark Centre for Mathematical Sciences, Lun University {linus,petter}@maths.lth.se Abstract Shift-map image processing is a new framework base on energy

More information

Comparison of Methods for Increasing the Performance of a DUA Computation

Comparison of Methods for Increasing the Performance of a DUA Computation Comparison of Methos for Increasing the Performance of a DUA Computation Michael Behrisch, Daniel Krajzewicz, Peter Wagner an Yun-Pang Wang Institute of Transportation Systems, German Aerospace Center,

More information

WLAN Indoor Positioning Based on Euclidean Distances and Fuzzy Logic

WLAN Indoor Positioning Based on Euclidean Distances and Fuzzy Logic WLAN Inoor Positioning Base on Eucliean Distances an Fuzzy Logic Anreas TEUBER, Bern EISSFELLER Institute of Geoesy an Navigation, University FAF, Munich, Germany, e-mail: (anreas.teuber, bern.eissfeller)@unibw.e

More information

Adjacency Matrix Based Full-Text Indexing Models

Adjacency Matrix Based Full-Text Indexing Models 1000-9825/2002/13(10)1933-10 2002 Journal of Software Vol.13, No.10 Ajacency Matrix Base Full-Text Inexing Moels ZHOU Shui-geng 1, HU Yun-fa 2, GUAN Ji-hong 3 1 (Department of Computer Science an Engineering,

More information

Offloading Cellular Traffic through Opportunistic Communications: Analysis and Optimization

Offloading Cellular Traffic through Opportunistic Communications: Analysis and Optimization 1 Offloaing Cellular Traffic through Opportunistic Communications: Analysis an Optimization Vincenzo Sciancalepore, Domenico Giustiniano, Albert Banchs, Anreea Picu arxiv:1405.3548v1 [cs.ni] 14 May 24

More information

THE BAYESIAN RECEIVER OPERATING CHARACTERISTIC CURVE AN EFFECTIVE APPROACH TO EVALUATE THE IDS PERFORMANCE

THE BAYESIAN RECEIVER OPERATING CHARACTERISTIC CURVE AN EFFECTIVE APPROACH TO EVALUATE THE IDS PERFORMANCE БСУ Международна конференция - 2 THE BAYESIAN RECEIVER OPERATING CHARACTERISTIC CURVE AN EFFECTIVE APPROACH TO EVALUATE THE IDS PERFORMANCE Evgeniya Nikolova, Veselina Jecheva Burgas Free University Abstract:

More information

Divide-and-Conquer Algorithms

Divide-and-Conquer Algorithms Supplment to A Practical Guie to Data Structures an Algorithms Using Java Divie-an-Conquer Algorithms Sally A Golman an Kenneth J Golman Hanout Divie-an-conquer algorithms use the following three phases:

More information

Using the disparity space to compute occupancy grids from stereo-vision

Using the disparity space to compute occupancy grids from stereo-vision The 2010 IEEE/RSJ International Conference on Intelligent Robots an Systems October 18-22, 2010, Taipei, Taiwan Using the isparity space to compute occupancy gris from stereo-vision Mathias Perrollaz,

More information

Cellular Ants: Combining Ant-Based Clustering with Cellular Automata

Cellular Ants: Combining Ant-Based Clustering with Cellular Automata Cellular Ants: Combining Ant-Base Clustering with Cellular Automata Anrew Vane Moere & Justin James Clayen Key Centre of Design Computing & Cognition, University of Syney, Australia {anrew,justin}@arch.usy.eu.au

More information

Genetic Fuzzy Logic Control Technique for a Mobile Robot Tracking a Moving Target

Genetic Fuzzy Logic Control Technique for a Mobile Robot Tracking a Moving Target .IJCSI.org 67 Genetic Fuzzy Logic Control Technique for a Mobile Robot Tracking a Moving Target Karim Benbouaballah an Zhu Qi-an College of Automation, Harbin Engineering University Harbin, 151, China

More information

Generalized Edge Coloring for Channel Assignment in Wireless Networks

Generalized Edge Coloring for Channel Assignment in Wireless Networks Generalize Ege Coloring for Channel Assignment in Wireless Networks Chun-Chen Hsu Institute of Information Science Acaemia Sinica Taipei, Taiwan Da-wei Wang Jan-Jan Wu Institute of Information Science

More information

1 Surprises in high dimensions

1 Surprises in high dimensions 1 Surprises in high imensions Our intuition about space is base on two an three imensions an can often be misleaing in high imensions. It is instructive to analyze the shape an properties of some basic

More information

NEW METHOD FOR FINDING A REFERENCE POINT IN FINGERPRINT IMAGES WITH THE USE OF THE IPAN99 ALGORITHM 1. INTRODUCTION 2.

NEW METHOD FOR FINDING A REFERENCE POINT IN FINGERPRINT IMAGES WITH THE USE OF THE IPAN99 ALGORITHM 1. INTRODUCTION 2. JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 13/009, ISSN 164-6037 Krzysztof WRÓBEL, Rafał DOROZ * fingerprint, reference point, IPAN99 NEW METHOD FOR FINDING A REFERENCE POINT IN FINGERPRINT IMAGES

More information

Research Article Hydrological Cycle Algorithm for Continuous Optimization Problems

Research Article Hydrological Cycle Algorithm for Continuous Optimization Problems Hinawi Journal of Optimization Volume 217, Article ID 382842, 25 pages https://oi.org/1.1155/217/382842 Research Article Hyrological Cycle Algorithm for Continuous Optimization Problems Ahma Weyan, Jacqueline

More information

arxiv: v1 [cs.cr] 22 Apr 2015 ABSTRACT

arxiv: v1 [cs.cr] 22 Apr 2015 ABSTRACT Differentially Private -Means Clustering arxiv:10.0v1 [cs.cr] Apr 01 ABSTRACT Dong Su #, Jianneng Cao, Ninghui Li #, Elisa Bertino #, Hongxia Jin There are two broa approaches for ifferentially private

More information

An Adaptive Routing Algorithm for Communication Networks using Back Pressure Technique

An Adaptive Routing Algorithm for Communication Networks using Back Pressure Technique International OPEN ACCESS Journal Of Moern Engineering Research (IJMER) An Aaptive Routing Algorithm for Communication Networks using Back Pressure Technique Khasimpeera Mohamme 1, K. Kalpana 2 1 M. Tech

More information

Intensive Hypercube Communication: Prearranged Communication in Link-Bound Machines 1 2

Intensive Hypercube Communication: Prearranged Communication in Link-Bound Machines 1 2 This paper appears in J. of Parallel an Distribute Computing 10 (1990), pp. 167 181. Intensive Hypercube Communication: Prearrange Communication in Link-Boun Machines 1 2 Quentin F. Stout an Bruce Wagar

More information

Indexing the Edges A simple and yet efficient approach to high-dimensional indexing

Indexing the Edges A simple and yet efficient approach to high-dimensional indexing Inexing the Eges A simple an yet efficient approach to high-imensional inexing Beng Chin Ooi Kian-Lee Tan Cui Yu Stephane Bressan Department of Computer Science National University of Singapore 3 Science

More information

Design of Policy-Aware Differentially Private Algorithms

Design of Policy-Aware Differentially Private Algorithms Design of Policy-Aware Differentially Private Algorithms Samuel Haney Due University Durham, NC, USA shaney@cs.ue.eu Ashwin Machanavajjhala Due University Durham, NC, USA ashwin@cs.ue.eu Bolin Ding Microsoft

More information

New Geometric Interpretation and Analytic Solution for Quadrilateral Reconstruction

New Geometric Interpretation and Analytic Solution for Quadrilateral Reconstruction New Geometric Interpretation an Analytic Solution for uarilateral Reconstruction Joo-Haeng Lee Convergence Technology Research Lab ETRI Daejeon, 305 777, KOREA Abstract A new geometric framework, calle

More information

Journal of Cybernetics and Informatics. Slovak Society for Cybernetics and Informatics

Journal of Cybernetics and Informatics. Slovak Society for Cybernetics and Informatics Journal of Cybernetics an Informatics publishe by Slovak Society for Cybernetics an Informatics Volume 13, 1 http://www.sski.sk/casopis/inex.php (home page) ISSN: 1336-4774 Journal of Cybernetics an Informatics

More information

EFFICIENT STEREO MATCHING BASED ON A NEW CONFIDENCE METRIC. Won-Hee Lee, Yumi Kim, and Jong Beom Ra

EFFICIENT STEREO MATCHING BASED ON A NEW CONFIDENCE METRIC. Won-Hee Lee, Yumi Kim, and Jong Beom Ra th European Signal Processing Conference (EUSIPCO ) Bucharest, omania, August 7-3, EFFICIENT STEEO MATCHING BASED ON A NEW CONFIDENCE METIC Won-Hee Lee, Yumi Kim, an Jong Beom a Department of Electrical

More information

Non-homogeneous Generalization in Privacy Preserving Data Publishing

Non-homogeneous Generalization in Privacy Preserving Data Publishing Non-homogeneous Generalization in Privacy Preserving Data Publishing W. K. Wong, Nios Mamoulis an Davi W. Cheung Department of Computer Science, The University of Hong Kong Pofulam Roa, Hong Kong {wwong2,nios,cheung}@cs.hu.h

More information

Interior Permanent Magnet Synchronous Motor (IPMSM) Adaptive Genetic Parameter Estimation

Interior Permanent Magnet Synchronous Motor (IPMSM) Adaptive Genetic Parameter Estimation Interior Permanent Magnet Synchronous Motor (IPMSM) Aaptive Genetic Parameter Estimation Java Rezaie, Mehi Gholami, Reza Firouzi, Tohi Alizaeh, Karim Salashoor Abstract - Interior permanent magnet synchronous

More information

Design and Analysis of Optimization Algorithms Using Computational

Design and Analysis of Optimization Algorithms Using Computational Appl. Num. Anal. Comp. Math., No. 3, 43 433 (4) / DOI./anac.47 Design an Analysis of Optimization Algorithms Using Computational Statistics T. Bartz Beielstein, K.E. Parsopoulos,3, an M.N. Vrahatis,3 Department

More information

A Convex Clustering-based Regularizer for Image Segmentation

A Convex Clustering-based Regularizer for Image Segmentation Vision, Moeling, an Visualization (2015) D. Bommes, T. Ritschel an T. Schultz (Es.) A Convex Clustering-base Regularizer for Image Segmentation Benjamin Hell (TU Braunschweig), Marcus Magnor (TU Braunschweig)

More information

Object Recognition Using Colour, Shape and Affine Invariant Ratios

Object Recognition Using Colour, Shape and Affine Invariant Ratios Object Recognition Using Colour, Shape an Affine Invariant Ratios Paul A. Walcott Centre for Information Engineering City University, Lonon EC1V 0HB, Englan P.A.Walcott@city.ac.uk Abstract This paper escribes

More information

Dual Arm Robot Research Report

Dual Arm Robot Research Report Dual Arm Robot Research Report Analytical Inverse Kinematics Solution for Moularize Dual-Arm Robot With offset at shouler an wrist Motivation an Abstract Generally, an inustrial manipulator such as PUMA

More information

Coupling the User Interfaces of a Multiuser Program

Coupling the User Interfaces of a Multiuser Program Coupling the User Interfaces of a Multiuser Program PRASUN DEWAN University of North Carolina at Chapel Hill RAJIV CHOUDHARY Intel Corporation We have evelope a new moel for coupling the user-interfaces

More information

Verifying performance-based design objectives using assemblybased vulnerability

Verifying performance-based design objectives using assemblybased vulnerability Verying performance-base esign objectives using assemblybase vulnerability K.A. Porter Calornia Institute of Technology, Pasaena, Calornia, USA A.S. Kiremijian Stanfor University, Stanfor, Calornia, USA

More information

A Modified Immune Network Optimization Algorithm

A Modified Immune Network Optimization Algorithm IAENG International Journal of Computer Science, 4:4, IJCS_4_4_3 A Moifie Immune Network Optimization Algorithm Lu Hong, Joarer Kamruzzaman Abstract This stuy proposes a moifie artificial immune network

More information

On the Role of Multiply Sectioned Bayesian Networks to Cooperative Multiagent Systems

On the Role of Multiply Sectioned Bayesian Networks to Cooperative Multiagent Systems On the Role of Multiply Sectione Bayesian Networks to Cooperative Multiagent Systems Y. Xiang University of Guelph, Canaa, yxiang@cis.uoguelph.ca V. Lesser University of Massachusetts at Amherst, USA,

More information

Learning Polynomial Functions. by Feature Construction

Learning Polynomial Functions. by Feature Construction I Proceeings of the Eighth International Workshop on Machine Learning Chicago, Illinois, June 27-29 1991 Learning Polynomial Functions by Feature Construction Richar S. Sutton GTE Laboratories Incorporate

More information

Characterizing Decoding Robustness under Parametric Channel Uncertainty

Characterizing Decoding Robustness under Parametric Channel Uncertainty Characterizing Decoing Robustness uner Parametric Channel Uncertainty Jay D. Wierer, Wahee U. Bajwa, Nigel Boston, an Robert D. Nowak Abstract This paper characterizes the robustness of ecoing uner parametric

More information

CLASS BASED RATIOING EFFECT ON SUB-PIXEL SINGLE LAND COVER AUTOMATIC MAPPING

CLASS BASED RATIOING EFFECT ON SUB-PIXEL SINGLE LAND COVER AUTOMATIC MAPPING CLSS BSED RTIOIG EFFECT O SUB-PIXEL SIGLE LD COVER UTOMTIC MPPIG nil Kumar *a, Suresh Saggar b, a Inian Institute of Remote Sensing, Dehraun, anil@iirs.gov.in b Birla Institute of Technology & Science,

More information

Feature Extraction and Rule Classification Algorithm of Digital Mammography based on Rough Set Theory

Feature Extraction and Rule Classification Algorithm of Digital Mammography based on Rough Set Theory Feature Extraction an Rule Classification Algorithm of Digital Mammography base on Rough Set Theory Aboul Ella Hassanien Jafar M. H. Ali. Kuwait University, Faculty of Aministrative Science, Quantitative

More information

Fuzzy Clustering in Parallel Universes

Fuzzy Clustering in Parallel Universes Fuzzy Clustering in Parallel Universes Bern Wisweel an Michael R. Berthol ALTANA-Chair for Bioinformatics an Information Mining Department of Computer an Information Science, University of Konstanz 78457

More information

A Plane Tracker for AEC-automation Applications

A Plane Tracker for AEC-automation Applications A Plane Tracker for AEC-automation Applications Chen Feng *, an Vineet R. Kamat Department of Civil an Environmental Engineering, University of Michigan, Ann Arbor, USA * Corresponing author (cforrest@umich.eu)

More information

Modifying ROC Curves to Incorporate Predicted Probabilities

Modifying ROC Curves to Incorporate Predicted Probabilities Moifying ROC Curves to Incorporate Preicte Probabilities Cèsar Ferri DSIC, Universitat Politècnica e València Peter Flach Department of Computer Science, University of Bristol José Hernánez-Orallo DSIC,

More information

MANJUSHA K.*, ANAND KUMAR M., SOMAN K. P.

MANJUSHA K.*, ANAND KUMAR M., SOMAN K. P. Journal of Engineering Science an echnology Vol. 13, No. 1 (2018) 141-157 School of Engineering, aylor s University IMPLEMENAION OF REJECION SRAEGIES INSIDE MALAYALAM CHARACER RECOGNIION SYSEM BASED ON

More information

A Cost Model For Nearest Neighbor Search. High-Dimensional Data Space

A Cost Model For Nearest Neighbor Search. High-Dimensional Data Space A Cost Moel For Nearest Neighbor Search in High-Dimensional Data Space Stefan Berchtol University of Munich Germany berchtol@informatikuni-muenchene Daniel A Keim University of Munich Germany keim@informatikuni-muenchene

More information

Research Article Inviscid Uniform Shear Flow past a Smooth Concave Body

Research Article Inviscid Uniform Shear Flow past a Smooth Concave Body International Engineering Mathematics Volume 04, Article ID 46593, 7 pages http://x.oi.org/0.55/04/46593 Research Article Invisci Uniform Shear Flow past a Smooth Concave Boy Abullah Mura Department of

More information

Almost Disjunct Codes in Large Scale Multihop Wireless Network Media Access Control

Almost Disjunct Codes in Large Scale Multihop Wireless Network Media Access Control Almost Disjunct Coes in Large Scale Multihop Wireless Network Meia Access Control D. Charles Engelhart Anan Sivasubramaniam Penn. State University University Park PA 682 engelhar,anan @cse.psu.eu Abstract

More information

Rough Set Approach for Classification of Breast Cancer Mammogram Images

Rough Set Approach for Classification of Breast Cancer Mammogram Images Rough Set Approach for Classification of Breast Cancer Mammogram Images Aboul Ella Hassanien Jafar M. H. Ali. Kuwait University, Faculty of Aministrative Science, Quantitative Methos an Information Systems

More information

Overlap Interval Partition Join

Overlap Interval Partition Join Overlap Interval Partition Join Anton Dignös Department of Computer Science University of Zürich, Switzerlan aignoes@ifi.uzh.ch Michael H. Böhlen Department of Computer Science University of Zürich, Switzerlan

More information

Classification and clustering methods for documents. by probabilistic latent semantic indexing model

Classification and clustering methods for documents. by probabilistic latent semantic indexing model A Short Course at amang University aipei, aiwan, R.O.C., March 7-9, 2006 Classification an clustering methos for ocuments by probabilistic latent semantic inexing moel Shigeichi Hirasawa Department of

More information

Lab work #8. Congestion control

Lab work #8. Congestion control TEORÍA DE REDES DE TELECOMUNICACIONES Grao en Ingeniería Telemática Grao en Ingeniería en Sistemas e Telecomunicación Curso 2015-2016 Lab work #8. Congestion control (1 session) Author: Pablo Pavón Mariño

More information

Robust Camera Calibration for an Autonomous Underwater Vehicle

Robust Camera Calibration for an Autonomous Underwater Vehicle obust Camera Calibration for an Autonomous Unerwater Vehicle Matthew Bryant, Davi Wettergreen *, Samer Aballah, Alexaner Zelinsky obotic Systems Laboratory Department of Engineering, FEIT Department of

More information

Loop Scheduling and Partitions for Hiding Memory Latencies

Loop Scheduling and Partitions for Hiding Memory Latencies Loop Scheuling an Partitions for Hiing Memory Latencies Fei Chen Ewin Hsing-Mean Sha Dept. of Computer Science an Engineering University of Notre Dame Notre Dame, IN 46556 Email: fchen,esha @cse.n.eu Tel:

More information

5th International Conference on Advanced Design and Manufacturing Engineering (ICADME 2015)

5th International Conference on Advanced Design and Manufacturing Engineering (ICADME 2015) 5th International Conference on Avance Design an Manufacturing Engineering (ICADME 25) Research on motion characteristics an application of multi egree of freeom mechanism base on R-W metho Xiao-guang

More information

Clustering Expression Data. Clustering Expression Data

Clustering Expression Data. Clustering Expression Data www.cs.washington.eu/ Subscribe if you Din t get msg last night Clustering Exression Data Why cluster gene exression ata? Tissue classification Fin biologically relate genes First ste in inferring regulatory

More information

Multilevel Linear Dimensionality Reduction using Hypergraphs for Data Analysis

Multilevel Linear Dimensionality Reduction using Hypergraphs for Data Analysis Multilevel Linear Dimensionality Reuction using Hypergraphs for Data Analysis Haw-ren Fang Department of Computer Science an Engineering University of Minnesota; Minneapolis, MN 55455 hrfang@csumneu ABSTRACT

More information

A Classification of 3R Orthogonal Manipulators by the Topology of their Workspace

A Classification of 3R Orthogonal Manipulators by the Topology of their Workspace A Classification of R Orthogonal Manipulators by the Topology of their Workspace Maher aili, Philippe Wenger an Damien Chablat Institut e Recherche en Communications et Cybernétique e Nantes, UMR C.N.R.S.

More information

All-to-all Broadcast for Vehicular Networks Based on Coded Slotted ALOHA

All-to-all Broadcast for Vehicular Networks Based on Coded Slotted ALOHA Preprint, August 5, 2018. 1 All-to-all Broacast for Vehicular Networks Base on Coe Slotte ALOHA Mikhail Ivanov, Frerik Brännström, Alexanre Graell i Amat, an Petar Popovski Department of Signals an Systems,

More information

On Effectively Determining the Downlink-to-uplink Sub-frame Width Ratio for Mobile WiMAX Networks Using Spline Extrapolation

On Effectively Determining the Downlink-to-uplink Sub-frame Width Ratio for Mobile WiMAX Networks Using Spline Extrapolation On Effectively Determining the Downlink-to-uplink Sub-frame With Ratio for Mobile WiMAX Networks Using Spline Extrapolation Panagiotis Sarigianniis, Member, IEEE, Member Malamati Louta, Member, IEEE, Member

More information

Nearest Neighbor Search using Additive Binary Tree

Nearest Neighbor Search using Additive Binary Tree Nearest Neighbor Search using Aitive Binary Tree Sung-Hyuk Cha an Sargur N. Srihari Center of Excellence for Document Analysis an Recognition State University of New York at Buffalo, U. S. A. E-mail: fscha,sriharig@cear.buffalo.eu

More information

Keywords Data compression, image processing, NCD, Kolmogorov complexity, JPEG, ZIP

Keywords Data compression, image processing, NCD, Kolmogorov complexity, JPEG, ZIP Volume 3, Issue 7, July 203 ISSN: 2277 28X International Journal of Avance Research in Computer Science an Software Engineering Research Paper Available online at: wwwijarcssecom Compression Techniques

More information

Improving Tree-Based Classification Rules Using a Particle Swarm Optimization

Improving Tree-Based Classification Rules Using a Particle Swarm Optimization Improving Tree-Based Classification Rules Using a Particle Swarm Optimization Chi-Hyuck Jun *, Yun-Ju Cho, and Hyeseon Lee Department of Industrial and Management Engineering Pohang University of Science

More information

AnyTraffic Labeled Routing

AnyTraffic Labeled Routing AnyTraffic Labele Routing Dimitri Papaimitriou 1, Pero Peroso 2, Davie Careglio 2 1 Alcatel-Lucent Bell, Antwerp, Belgium Email: imitri.papaimitriou@alcatel-lucent.com 2 Universitat Politècnica e Catalunya,

More information

Comparative Study of Projection/Back-projection Schemes in Cryo-EM Tomography

Comparative Study of Projection/Back-projection Schemes in Cryo-EM Tomography Comparative Stuy of Projection/Back-projection Schemes in Cryo-EM Tomography Yu Liu an Jong Chul Ye Department of BioSystems Korea Avance Institute of Science an Technology, Daejeon, Korea ABSTRACT In

More information

Learning convex bodies is hard

Learning convex bodies is hard Learning convex boies is har Navin Goyal Microsoft Research Inia navingo@microsoftcom Luis Raemacher Georgia Tech lraemac@ccgatecheu Abstract We show that learning a convex boy in R, given ranom samples

More information

k-nn Graph Construction: a Generic Online Approach

k-nn Graph Construction: a Generic Online Approach k-nn Graph Construction: a Generic Online Approach Wan-Lei Zhao arxiv:80.00v [cs.ir] Sep 08 Abstract Nearest neighbor search an k-nearest neighbor graph construction are two funamental issues arise from

More information

Transient analysis of wave propagation in 3D soil by using the scaled boundary finite element method

Transient analysis of wave propagation in 3D soil by using the scaled boundary finite element method Southern Cross University epublications@scu 23r Australasian Conference on the Mechanics of Structures an Materials 214 Transient analysis of wave propagation in 3D soil by using the scale bounary finite

More information

Research Article Research on Law s Mask Texture Analysis System Reliability

Research Article Research on Law s Mask Texture Analysis System Reliability Research Journal of Applie Sciences, Engineering an Technology 7(19): 4002-4007, 2014 DOI:10.19026/rjaset.7.761 ISSN: 2040-7459; e-issn: 2040-7467 2014 Maxwell Scientific Publication Corp. Submitte: November

More information

A shortest path algorithm in multimodal networks: a case study with time varying costs

A shortest path algorithm in multimodal networks: a case study with time varying costs A shortest path algorithm in multimoal networks: a case stuy with time varying costs Daniela Ambrosino*, Anna Sciomachen* * Department of Economics an Quantitative Methos (DIEM), University of Genoa Via

More information