The Minimum Redundancy Maximum Relevance Approach to Building Sparse Support Vector Machines

Size: px
Start display at page:

Download "The Minimum Redundancy Maximum Relevance Approach to Building Sparse Support Vector Machines"

Transcription

1 The Minimum Redundany Maximum Relevane Approah to Building Sparse Support Vetor Mahines Xiaoxing Yang, Ke Tang, and Xin Yao, Nature Inspired Computation and Appliations Laboratory (NICAL), Shool of Computer Siene and Tehnology, University of Siene and Tehnology of China, Hefei, China, The Center of Exellene for Researh in Computational Intelligene and Appliations (CERCIA), Shool of Computer Siene, The University of Birmingham, B5 TT Birmingham, U.K. Abstrat. Reently, building sparse SVMs beomes an ative researh topi due to its potential appliations in large sale data mining tasks. One of the most popular approahes to building sparse SVMs is to selet a small subset of training samples and employ them as the support vetors. In this paper, we explain that seleting the support vetors is equivalent to seleting a number of olumns from the kernel matrix, and is equivalent to seleting a subset of features in the feature seletion domain. Hene, we propose to use an effetive feature seletion algorithm, namely the Minimum Redundany Maximum Relevane (MRMR) algorithm to solve the support vetor seletion problem. MRMR algorithm was then ompared to two existing methods, namely bakfitting (BF) and pre-fitting (PF) algorithms. Preliminary results showed that MRMR generally outperformed BF algorithm while it was inferior to PF algorithm, in terms of generalization performane. However, the MRMR approah was extremely effiient and signifiantly faster than the two ompared algorithms. Keywords: Relevane, Redundany, Sparse design, SVMs, Mahine learning. Introdution As a relatively new lass of learning algorithms, kernel methods have been extensively studied reently []. The underlying onept of kernel methods an be interpreted as solving learning tasks in a reproduing kernel Hilbert spae (RKHS) indued by a kernel funtion. Then, a kernel method an usually be obtained by extending some traditional learning algorithm to the RKHS. Typial kernel methods inlude the well-known support vetor mahines (SVM) [], least squares support vetor mahines (LS-SVM) [3], proximal support vetor mahines (PSVM) [4], kernel Fisher disriminant analysis (KFDA) [5], et. Among the existing kernel methods, SVM is the first invented one, and probably is the most well-known one as well. Suppose we have n training samples, {(x, y ), (x, y ),, (x n, y n )}, where x i is a d-dimensional sample vetor and y ± is the i E. Corhado and H. Yin (Eds.): IDEAL 009, LNCS 5788, pp , 009. Springer-Verlag Berlin Heidelberg 009

2 The MRMR Approah to Building Sparse Support Vetor Mahines 85 orresponding lass label. The training algorithm of SVM seeks a deision hyperplane in the RKHS, whih is expeted to separate apart the samples from different lasses. Given a sample x, the SVM adopts the deision funtion in Eq. () to lassify it to either + or - lass: N SV f( x) = α yk( x, x ) + b () i= i i i where k(x, x i ) is a predefined funtion, usually known as kernel funtion, that defines the inner produt of x and x i in the RKHS. α i and b are parameters of the lassifier that are omputed during the training episode, and N sv is the number of support vetors. In the literature of SVM, a support vetor is a training sample that orresponds to a non-zero α i (α i s always take non-negative values). Although SVM has been proven to be an effetive learning approah for real-world tasks, its omputational ost is relatively high, and hene its appliation in many data mining tasks is usually prohibited. The reasons are two-fold: First, the training episode of SVM involves solving a quadrati programming (QP) problem. Briefly speaking, this proedure is arried out on a kernel matrix K: k K = k ( x, x ) L k( x, x ) M O ( ) ( ) xn, x L k xn, xn where K ij an be alulated by k(x i, x j ). That means, K is a n-by-n matrix, and thereby the omputational omplexity of solving the QP problem inreases quadratially with the number of samples. Seond, Eq. () demonstrates that the omputational omplexity of lassifying a sample inreases linearly with the number of support vetors. Sine the number of support vetors typially inreases linearly with the number of samples, the time required for lassifying a new sample (i.e., the testing phase) inreases linearly with the number of samples. Due to the above drawbaks of SVM, a lot of work has been onduted to redue its omputational ost. In partiular, most approahes aim at reduing the number of support vetors of the final SVM. Suh an SVM lassifier is referred to the sparse SVM in the literature. The existing approahes for building sparse SVM an be ategorized into three groups. The first group of methods solves the SVM first to get a deision funtion in the form of Eq. (). Then, they try to use less support vetors to approximate this deision funtion. For example, the redued set (RS) method proposed by Burges [6] [7] utilizes the gradient desent algorithm to seek a set of virtual samples for the approximation. This type of methods an only make the testing phase of SVM more effiient, while requires higher omputational ost for training. The seond type of methods aims at diretly finding a small set of virtual support vetors that provides good generalization performane. A representative of this group of methods is the sparse kernel learning algorithm (SKLA) proposed by Wu et al. [8]. Given a predefined number of support vetors, the SKLA diretly uses a gradient desent algorithm to searh for the optimal vetors that minimize the objetive funtion of SVM. Like the first type methods, the final support vetors are not neessarily training samples, but an be any virtual data points. The differene is that it does not require solving the QP problem in prior, and thus redues the training ost. Although M n ()

3 86 X. Yang, K. Tang, and X. Yao finding virtual support vetors has been shown to be effetive, it osts too muh time to get a good solution. Hene, quite a few researhers have tried to aelerate SVM without seeking virtual support vetors [9] [0] [] [] [3] [4]. All the third type methods follow suh a priniple. Typially, these methods aim at seeking a small set of training samples, the size of whih is smaller than the atually number of support vetors obtained by training the whole QP problem, but are still suffiient for ahieving good generalization performane. With this purpose in mind, the general methodology is to selet a subset of training samples without diretly solving the QP problem. After the seletion proess, a new QP problem with muh smaller size (typially the size is determined by the size of the sample subset) an be formulated, and the optimal α i s are then omputed by solving the new QP problem. Sine this type of methods is usually easier to implement and may not suffer from many numerial problems, they seem to be more popular than the gradient desent-based methods. For example, Keerthi et al. [3] proposed two algorithms named bak-fitting (BF) and pre-fitting (PF) approahes, respetively. In this paper, we propose an approah to selet a training sample subset as the support vetors of SVM. Speifially, we suggest that the seletion of support vetors for SVM is equivalent to the seletion of features in the feature seletion domain. Sine the feature seletion problems have been intensively investigated in the pattern reognition literature, we believe that a good feature seletion algorithm an be readily applied to selet support vetors. Following this idea, we employed the well-known Minimum Redundany Maximum Relevane (MRMR) feature seletion algorithm [5] to address the support vetor seletion problem, and ompared it with two stateof-the-art support vetor seletion algorithms, the BF and PF algorithms. Preliminary results showed that MRMR generally outperformed the BF algorithm while it was inferior to PF algorithm in terms of generalization performane. However, the MRMR approah was signifiantly faster than the two ompared algorithms. The rest of this paper is organized as follows. In Setion, we elaborate the equivalene between support vetor seletion and feature seletion, and introdue the MRMR algorithm in detail. Setion 3 presents our preliminary experimental study. Setion 4 onludes the paper and disusses potential diretions for future work. Selet Support Vetors Using MRMR Algorithm From Eq. (), we may find that the deision funtion of SVM an be written in form of T f( x) = β K % + b (3) where β=[α y, α y, α Nsv y Nsv ] T, K [ k( x, x ),..., k( x, x )] T ~ =. In feature seletion domain, we hoose a subset of features so as to better desribe the relationship between the features and label. For linear ase, we want to get the following expression: T x = w x + (4) g( ) Nsv

4 The MRMR Approah to Building Sparse Support Vetor Mahines 87 where x=[x,,x sub ] with x i as the seleted feature value, and w=[w w sub ] with w i as the orresponding weight. is the bias term. Absolutely, if the expression is good for desribing the data, then we an say that the features are good representatives. We an see the similarity between the Eq. (3) and Eq. (4). That means, the kernel matrix K an be viewed as a new data matrix, eah training sample x i orresponds to a row of K. If we view the ith row of K as the mapping of sample x i in a new spae, then its jth features are obtained by alulating the value of k(x i, x j ). From this view point, when we try to redue the number of support vetors, we only need to redue the number of olumns of the kernel matrix K, while keeping the number of rows unhanged. After seleting N sv appropriate olumns of K, alulating the orresponding α i s is equivalent to seeking the optimal linear deision funtion with respet to the data lying in the l-dimensional spae. In the next, we introdue the MRMR approah for seleting the olumns of K. Let K denote the ith olumn of the n-by-n kernel matrix K, the MRMR starts from alulating the relevane sore of eah K, whih is [ ( i =. i. i) ]/ (5) = F n K K σ n is the number of training samples of the th lass. K is the mean value of where the olumn K and K. i is the mean value of K within the th lass. σ is the pooled variane that an be alulated by σ = [ ( n ) σ]/( n ) (where σ is the variane of K within the th lass.) F i is the F-statisti between the ith olumn and the labels, and it is equivalent to t-statisti in ase of binary lassifiation. Based upon Eq. (5), the relevane sore of a subset of olumns (say G) an be alulated by: R F = F (6) G i G Aordingly, MRMR measures the redundany of G by R off i = (, ) off i j (7) G i, j G where off(i, j) is the Pearson orrelation oeffiient between the ith and the jth olumns of K. With these definitions, MRMR aims at finding the subset of olumns with the maximum value of R F and the minimum value of R off. This is typially done by seeking the subset with the largest RF / R off or the largest value of RF Roff in the original literature [5]. In this paper, we introdue another parameter into the MRMR. That is, we seek the subset with the largest RF λroff, where λ is a predefined parameter whih ontrols the trade-off between the relevane and redundany. MRMR employs sequential forward seletion sheme to searh for the optimal feature subset.

5 88 X. Yang, K. Tang, and X. Yao First, the olumn orresponding to the largest F i is seleted aording to Eq. (5). After that, the rest of the features are seleted one by one. At eah iteration, the previously unseleted features are evaluated aording to Eqs. (6) and (7), the one with the largest RF λroff is seleted. 3 Experimental Study To evaluate the effiay of MRMR algorithm for building sparse SVMs, we arried out experimental studies on seven data sets of the UCI Repository [6], namely Australian, Monks-, Heart, Mammographi, Wdb, Hill-valley, and Promoters. Sine MRMR is in nature a seletion-based algorithm, we ompared it to two state-of-theart seletion based algorithms, namely the BF and PF algorithms. The radial basis funtion was used as the kernel funtion: k ( xi, x j ) exp( xi x j ) = γ (8) As to ompare the three methods, we implemented all the three methods ourselves. The Newton method used in [3] was employed in our implementation to obtain the solution (i.e., the oeffiients β) of SVM. All parameters were tuned using 5-fold ross-validation. We tuned the parameter γ and the regularization parameter C with seletion rate equivalent to (i.e., using all the data). And then we tuned the parameter λ with seletion rate equivalent 0% using our seletion method. For eah data set, we onduted 5-fold ross-validation for 0 times. In eah run, the three algorithms were applied separately to selet 4% of the training samples to build sparse SVMs. Then, lassifiation auray of the sparse SVMs built with the three subsets was evaluated. The average auray and the standard deviations are presented in Table. Furthermore, Wiloxon signed-rank test with signifiane level equivalent to 0.05 has been onduted and the results are also presented in Table. From Table, we may find that MRMR outperformed BF algorithm on data sets, while no signifiant differene was observed on the other 5 data sets. In omparison with PF algorithm, MRMR was inferior on 3 data sets, while ahieved omparable performane on the other 4 data sets. In summary, MRMR generally outperformed BF algorithm in terms of lassifiation auray, but was generally inferior to PF algorithm. Sine the major signifiane of onstruting sparse SVMs is to extend its appliation to large size data sets, the omputational ost required to obtain the sparse SVM is also of great importane. Table summarizes the average CPU time required by the three ompared algorithms to selet support vetors on the 7 data sets. It an be observed that the MRMR is the most effiient one among the three. The runtimes of BF and PF algorithms are at least 0 times and 00 times of that of MRMR, respetively. To summarize, experimental studies demonstrated that MRMR is definitely better than BF algorithm. In omparison with PF algorithm, MRMR may lead to sparse SVMs with inferior generalization performane. However, MRMR provides signifiant omputational advantage. Hene, MRMR an be viewed as a potential alternative to PF algorithm in ase of mining large sale data sets.

6 The MRMR Approah to Building Sparse Support Vetor Mahines 89 Table. Average lassifiation auray (%) of 0 runs of 5-fold ross-validation proedures. The standard deviations are given in the parentheses. The last two olumns present the results of the Wiloxon signed-rank test. means MRMR outperformed the ompared algorithm, 0 indiates that there was no signifiant differene between the two ompared algorithms, and - means MRMR was outperformed by the ompared algorithm. Method Datasets MRMR PF BF MRMR vs. PF Australian 86.5(.57) 86.6(.5) 86.63(.50) 0 0 Monks- 76.0(7.76) 9.09(5.4) 77.08(4.77) - 0 Heart 83.37(4.4) 8.83(4.53) 8.6(3.80) 0 Mammographi 80.64(3.75) 80.93(3.78) 80.83(3.94) 0 0 Wdb 97.06(.59) 96.94(.44) 97.07(.44) 0 0 Hill-valley 57.89(5.68) 65.47(4.7) 5.3(4.) - Promoters 6.88(4.9) 67.88(0.8) 66.3(0.8) - 0 MRMR vs. BF Table. Runtime (seonds) of the three ompared algorithms on the seven data sets Methods MRMR PF BF Datasets Australian Monks Heart Mammographi Wdb Hill-valley Promoters Conlusion and Disussion Sparse SVMs are usually obtained by seleting support vetors from training samples. In this paper, we explained that the support vetor seletion is equivalent to seleting a number of olumns of the kernel matrix, and proposed to employ the MRMR algorithm to solve this problem. Experimental results indiated that the omputational ost of MRMR is extremely low in omparison to two existing approahes, i.e., bakfitting (BF) and pre-fitting (PF) algorithms. Furthermore, MRMR also outperformed the BF algorithm in terms of lassifiation auray. Our urrent work an be extended in the future along two main diretions. First, sine MRMR is very effiient and PF algorithm an lead to better generalization performane, it would be interesting to investigate the possibility of ombining MRMR with the PF algorithm. Suh a ombination might lead to novel algorithms with both good generalization performane and satisfatory omputational effiieny. Seond, the relevane and redundany defined in the original MRMR algorithm might not suit the speifi senario of building sparse SVMs. Hene, it is neessary to seek alternative definitions to enhane the performane of MRMR in the ase of building sparse SVMs.

7 90 X. Yang, K. Tang, and X. Yao Aknowledgement This work was partially supported by the Fund for International Joint Researh Program of Anhui Siene and Tehnology Department (No ) and a National Natural Siene Foundation of China grant (No ). Referenes. Shawe-Taylor, J., Cristianini, N.: Kernel Methods for Pattern Analysis. Cambridge University Press, Cambridge (004). Burges, C.J.C.: A tutorial on support vetor mahines for pattern reognition. Data Mining and Knowledge Disovery, 67 (998) 3. Suykens, J.A.K., Vandewalle, J.: Least squares support vetor mahine lassifiers. Neural Proessing Letters 9, (999) 4. Fung, G., Mangasarian, O.L.: Proximal support vetor mahine lassifiers. In: Proeedings of Knowledge Disovery and Data Mining, San Franiso, CA, New York, pp (00) 5. Mika, S., Rätsh, G., Weston, J., Shölkopf, B., Smola, A.J., Mueller, K.-R.: Construting desriptive and disriminative non-linear features: Rayleigh oeffiients in kernel feature spaes. IEEE Transations on Pattern Analysis and Mahine Intelligene 5(5), (003) 6. Burges, C.J.C.: Simplified support vetor deision rules. In: Proeedings of the 3 th International Conferene on Mahine Learning, Bari, Italy, pp (996) 7. Burges, C.J.C., Shoelkopf, B.: Improving speed and auray of support vetor learning mahines. In: Advanes in Neural Information Proessing Systems, vol. 9, pp MIT Press, Cambridge (997) 8. Wu, M., Shölkoph, B., Bakir, G.: A diret method for building sparse kernel learning algorithms. Journal of Mahine Learning Researh 7, (006) 9. Lee, Y., Mangasarian, O.L.: RSVM: redued support vetor mahines. In: CD Proeedings of the First SIAM International Conferene on Data Mining, Chiago (00) 0. Lee, Y., Mangasarian, O.L.: SSVM: A smooth support vetor mahine. In: Computational Optimization and appliations, pp. 5 (00). Lin, K., Lin, C.: A study on redued support vetor mahines. IEEE Transations on Neural Networks 4, (003). Downs, T., Gates, K.E., Masters, A.: Exat simplifiation of support vetor solutions. Journal of Mahine Learning Researh, (00) 3. Keerthi, S.S., Chapelle, O., DeCoste, D.: Building support vetor mahines with redued lassifier omplexity. Journal of Mahine Learning Researh 8, (006) 4. Sun, P., Yao, X.: Greedy forward seletion algorithms to sparse Gaussian proess regression. In: Proeedings of the 006 International Joint Conferene on Neural Networks (IJCNN 006), Vanouver, Canada, pp (006) 5. Ding, C., Peng, H.: Minimum redundany feature seletion from miroarray gene expression data. In: Proeedings of the Computational Systems Bioinformatis, pp (003) 6. UCI Mahine Learning Repository,

Abstract. Key Words: Image Filters, Fuzzy Filters, Order Statistics Filters, Rank Ordered Mean Filters, Channel Noise. 1.

Abstract. Key Words: Image Filters, Fuzzy Filters, Order Statistics Filters, Rank Ordered Mean Filters, Channel Noise. 1. Fuzzy Weighted Rank Ordered Mean (FWROM) Filters for Mixed Noise Suppression from Images S. Meher, G. Panda, B. Majhi 3, M.R. Meher 4,,4 Department of Eletronis and I.E., National Institute of Tehnology,

More information

An Optimized Approach on Applying Genetic Algorithm to Adaptive Cluster Validity Index

An Optimized Approach on Applying Genetic Algorithm to Adaptive Cluster Validity Index IJCSES International Journal of Computer Sienes and Engineering Systems, ol., No.4, Otober 2007 CSES International 2007 ISSN 0973-4406 253 An Optimized Approah on Applying Geneti Algorithm to Adaptive

More information

A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR

A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR Malaysian Journal of Computer Siene, Vol 10 No 1, June 1997, pp 36-41 A DYNAMIC ACCESS CONTROL WITH BINARY KEY-PAIR Md Rafiqul Islam, Harihodin Selamat and Mohd Noor Md Sap Faulty of Computer Siene and

More information

One Against One or One Against All : Which One is Better for Handwriting Recognition with SVMs?

One Against One or One Against All : Which One is Better for Handwriting Recognition with SVMs? One Against One or One Against All : Whih One is Better for Handwriting Reognition with SVMs? Jonathan Milgram, Mohamed Cheriet, Robert Sabourin To ite this version: Jonathan Milgram, Mohamed Cheriet,

More information

Self-Adaptive Parent to Mean-Centric Recombination for Real-Parameter Optimization

Self-Adaptive Parent to Mean-Centric Recombination for Real-Parameter Optimization Self-Adaptive Parent to Mean-Centri Reombination for Real-Parameter Optimization Kalyanmoy Deb and Himanshu Jain Department of Mehanial Engineering Indian Institute of Tehnology Kanpur Kanpur, PIN 86 {deb,hjain}@iitk.a.in

More information

Boosted Random Forest

Boosted Random Forest Boosted Random Forest Yohei Mishina, Masamitsu suhiya and Hironobu Fujiyoshi Department of Computer Siene, Chubu University, 1200 Matsumoto-ho, Kasugai, Aihi, Japan {mishi, mtdoll}@vision.s.hubu.a.jp,

More information

Pipelined Multipliers for Reconfigurable Hardware

Pipelined Multipliers for Reconfigurable Hardware Pipelined Multipliers for Reonfigurable Hardware Mithell J. Myjak and José G. Delgado-Frias Shool of Eletrial Engineering and Computer Siene, Washington State University Pullman, WA 99164-2752 USA {mmyjak,

More information

Learning Convention Propagation in BeerAdvocate Reviews from a etwork Perspective. Abstract

Learning Convention Propagation in BeerAdvocate Reviews from a etwork Perspective. Abstract CS 9 Projet Final Report: Learning Convention Propagation in BeerAdvoate Reviews from a etwork Perspetive Abstrat We look at the way onventions propagate between reviews on the BeerAdvoate dataset, and

More information

the data. Structured Principal Component Analysis (SPCA)

the data. Structured Principal Component Analysis (SPCA) Strutured Prinipal Component Analysis Kristin M. Branson and Sameer Agarwal Department of Computer Siene and Engineering University of California, San Diego La Jolla, CA 9193-114 Abstrat Many tasks involving

More information

A Novel Validity Index for Determination of the Optimal Number of Clusters

A Novel Validity Index for Determination of the Optimal Number of Clusters IEICE TRANS. INF. & SYST., VOL.E84 D, NO.2 FEBRUARY 2001 281 LETTER A Novel Validity Index for Determination of the Optimal Number of Clusters Do-Jong KIM, Yong-Woon PARK, and Dong-Jo PARK, Nonmembers

More information

Cluster-Based Cumulative Ensembles

Cluster-Based Cumulative Ensembles Cluster-Based Cumulative Ensembles Hanan G. Ayad and Mohamed S. Kamel Pattern Analysis and Mahine Intelligene Lab, Eletrial and Computer Engineering, University of Waterloo, Waterloo, Ontario N2L 3G1,

More information

KERNEL SPARSE REPRESENTATION WITH LOCAL PATTERNS FOR FACE RECOGNITION

KERNEL SPARSE REPRESENTATION WITH LOCAL PATTERNS FOR FACE RECOGNITION KERNEL SPARSE REPRESENTATION WITH LOCAL PATTERNS FOR FACE RECOGNITION Cuiui Kang 1, Shengai Liao, Shiming Xiang 1, Chunhong Pan 1 1 National Laboratory of Pattern Reognition, Institute of Automation, Chinese

More information

Evolutionary Feature Synthesis for Image Databases

Evolutionary Feature Synthesis for Image Databases Evolutionary Feature Synthesis for Image Databases Anlei Dong, Bir Bhanu, Yingqiang Lin Center for Researh in Intelligent Systems University of California, Riverside, California 92521, USA {adong, bhanu,

More information

Gradient based progressive probabilistic Hough transform

Gradient based progressive probabilistic Hough transform Gradient based progressive probabilisti Hough transform C.Galambos, J.Kittler and J.Matas Abstrat: The authors look at the benefits of exploiting gradient information to enhane the progressive probabilisti

More information

Smooth Trajectory Planning Along Bezier Curve for Mobile Robots with Velocity Constraints

Smooth Trajectory Planning Along Bezier Curve for Mobile Robots with Velocity Constraints Smooth Trajetory Planning Along Bezier Curve for Mobile Robots with Veloity Constraints Gil Jin Yang and Byoung Wook Choi Department of Eletrial and Information Engineering Seoul National University of

More information

Capturing Large Intra-class Variations of Biometric Data by Template Co-updating

Capturing Large Intra-class Variations of Biometric Data by Template Co-updating Capturing Large Intra-lass Variations of Biometri Data by Template Co-updating Ajita Rattani University of Cagliari Piazza d'armi, Cagliari, Italy ajita.rattani@diee.unia.it Gian Lua Marialis University

More information

Contents Contents...I List of Tables...VIII List of Figures...IX 1. Introduction Information Retrieval... 8

Contents Contents...I List of Tables...VIII List of Figures...IX 1. Introduction Information Retrieval... 8 Contents Contents...I List of Tables...VIII List of Figures...IX 1. Introdution... 1 1.1. Internet Information...2 1.2. Internet Information Retrieval...3 1.2.1. Doument Indexing...4 1.2.2. Doument Retrieval...4

More information

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2

On - Line Path Delay Fault Testing of Omega MINs M. Bellos 1, E. Kalligeros 1, D. Nikolos 1,2 & H. T. Vergos 1,2 On - Line Path Delay Fault Testing of Omega MINs M. Bellos, E. Kalligeros, D. Nikolos,2 & H. T. Vergos,2 Dept. of Computer Engineering and Informatis 2 Computer Tehnology Institute University of Patras,

More information

Exploiting Enriched Contextual Information for Mobile App Classification

Exploiting Enriched Contextual Information for Mobile App Classification Exploiting Enrihed Contextual Information for Mobile App Classifiation Hengshu Zhu 1 Huanhuan Cao 2 Enhong Chen 1 Hui Xiong 3 Jilei Tian 2 1 University of Siene and Tehnology of China 2 Nokia Researh Center

More information

Multi-Piece Mold Design Based on Linear Mixed-Integer Program Toward Guaranteed Optimality

Multi-Piece Mold Design Based on Linear Mixed-Integer Program Toward Guaranteed Optimality INTERNATIONAL CONFERENCE ON MANUFACTURING AUTOMATION (ICMA200) Multi-Piee Mold Design Based on Linear Mixed-Integer Program Toward Guaranteed Optimality Stephen Stoyan, Yong Chen* Epstein Department of

More information

NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION. Ken Sauer and Charles A. Bouman

NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION. Ken Sauer and Charles A. Bouman NONLINEAR BACK PROJECTION FOR TOMOGRAPHIC IMAGE RECONSTRUCTION Ken Sauer and Charles A. Bouman Department of Eletrial Engineering, University of Notre Dame Notre Dame, IN 46556, (219) 631-6999 Shool of

More information

Extracting Partition Statistics from Semistructured Data

Extracting Partition Statistics from Semistructured Data Extrating Partition Statistis from Semistrutured Data John N. Wilson Rihard Gourlay Robert Japp Mathias Neumüller Department of Computer and Information Sienes University of Strathlyde, Glasgow, UK {jnw,rsg,rpj,mathias}@is.strath.a.uk

More information

Relevance for Computer Vision

Relevance for Computer Vision The Geometry of ROC Spae: Understanding Mahine Learning Metris through ROC Isometris, by Peter A. Flah International Conferene on Mahine Learning (ICML-23) http://www.s.bris.a.uk/publiations/papers/74.pdf

More information

A Coarse-to-Fine Classification Scheme for Facial Expression Recognition

A Coarse-to-Fine Classification Scheme for Facial Expression Recognition A Coarse-to-Fine Classifiation Sheme for Faial Expression Reognition Xiaoyi Feng 1,, Abdenour Hadid 1 and Matti Pietikäinen 1 1 Mahine Vision Group Infoteh Oulu and Dept. of Eletrial and Information Engineering

More information

Partial Character Decoding for Improved Regular Expression Matching in FPGAs

Partial Character Decoding for Improved Regular Expression Matching in FPGAs Partial Charater Deoding for Improved Regular Expression Mathing in FPGAs Peter Sutton Shool of Information Tehnology and Eletrial Engineering The University of Queensland Brisbane, Queensland, 4072, Australia

More information

Detection and Recognition of Non-Occluded Objects using Signature Map

Detection and Recognition of Non-Occluded Objects using Signature Map 6th WSEAS International Conferene on CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cairo, Egypt, De 9-31, 007 65 Detetion and Reognition of Non-Oluded Objets using Signature Map Sangbum Park,

More information

A {k, n}-secret Sharing Scheme for Color Images

A {k, n}-secret Sharing Scheme for Color Images A {k, n}-seret Sharing Sheme for Color Images Rastislav Luka, Konstantinos N. Plataniotis, and Anastasios N. Venetsanopoulos The Edward S. Rogers Sr. Dept. of Eletrial and Computer Engineering, University

More information

Model Based Approach for Content Based Image Retrievals Based on Fusion and Relevancy Methodology

Model Based Approach for Content Based Image Retrievals Based on Fusion and Relevancy Methodology The International Arab Journal of Information Tehnology, Vol. 12, No. 6, November 15 519 Model Based Approah for Content Based Image Retrievals Based on Fusion and Relevany Methodology Telu Venkata Madhusudhanarao

More information

Naïve Bayesian Rough Sets Under Fuzziness

Naïve Bayesian Rough Sets Under Fuzziness IJMSA: Vol. 6, No. 1-2, January-June 2012, pp. 19 25 Serials Publiations ISSN: 0973-6786 Naïve ayesian Rough Sets Under Fuzziness G. GANSAN 1,. KRISHNAVNI 2 T. HYMAVATHI 3 1,2,3 Department of Mathematis,

More information

3-D IMAGE MODELS AND COMPRESSION - SYNTHETIC HYBRID OR NATURAL FIT?

3-D IMAGE MODELS AND COMPRESSION - SYNTHETIC HYBRID OR NATURAL FIT? 3-D IMAGE MODELS AND COMPRESSION - SYNTHETIC HYBRID OR NATURAL FIT? Bernd Girod, Peter Eisert, Marus Magnor, Ekehard Steinbah, Thomas Wiegand Te {girod eommuniations Laboratory, University of Erlangen-Nuremberg

More information

Detecting Outliers in High-Dimensional Datasets with Mixed Attributes

Detecting Outliers in High-Dimensional Datasets with Mixed Attributes Deteting Outliers in High-Dimensional Datasets with Mixed Attributes A. Koufakou, M. Georgiopoulos, and G.C. Anagnostopoulos 2 Shool of EECS, University of Central Florida, Orlando, FL, USA 2 Dept. of

More information

A scheme for racquet sports video analysis with the combination of audio-visual information

A scheme for racquet sports video analysis with the combination of audio-visual information A sheme for raquet sports video analysis with the ombination of audio-visual information Liyuan Xing a*, Qixiang Ye b, Weigang Zhang, Qingming Huang a and Hua Yu a a Graduate Shool of the Chinese Aadamy

More information

13.1 Numerical Evaluation of Integrals Over One Dimension

13.1 Numerical Evaluation of Integrals Over One Dimension 13.1 Numerial Evaluation of Integrals Over One Dimension A. Purpose This olletion of subprograms estimates the value of the integral b a f(x) dx where the integrand f(x) and the limits a and b are supplied

More information

Time delay estimation of reverberant meeting speech: on the use of multichannel linear prediction

Time delay estimation of reverberant meeting speech: on the use of multichannel linear prediction University of Wollongong Researh Online Faulty of Informatis - apers (Arhive) Faulty of Engineering and Information Sienes 7 Time delay estimation of reverberant meeting speeh: on the use of multihannel

More information

Automatic Physical Design Tuning: Workload as a Sequence Sanjay Agrawal Microsoft Research One Microsoft Way Redmond, WA, USA +1-(425)

Automatic Physical Design Tuning: Workload as a Sequence Sanjay Agrawal Microsoft Research One Microsoft Way Redmond, WA, USA +1-(425) Automati Physial Design Tuning: Workload as a Sequene Sanjay Agrawal Mirosoft Researh One Mirosoft Way Redmond, WA, USA +1-(425) 75-357 sagrawal@mirosoft.om Eri Chu * Computer Sienes Department University

More information

A Novel Bit Level Time Series Representation with Implication of Similarity Search and Clustering

A Novel Bit Level Time Series Representation with Implication of Similarity Search and Clustering A Novel Bit Level Time Series Representation with Impliation of Similarity Searh and lustering hotirat Ratanamahatana, Eamonn Keogh, Anthony J. Bagnall 2, and Stefano Lonardi Dept. of omputer Siene & Engineering,

More information

Unsupervised Stereoscopic Video Object Segmentation Based on Active Contours and Retrainable Neural Networks

Unsupervised Stereoscopic Video Object Segmentation Based on Active Contours and Retrainable Neural Networks Unsupervised Stereosopi Video Objet Segmentation Based on Ative Contours and Retrainable Neural Networks KLIMIS NTALIANIS, ANASTASIOS DOULAMIS, and NIKOLAOS DOULAMIS National Tehnial University of Athens

More information

Using Augmented Measurements to Improve the Convergence of ICP

Using Augmented Measurements to Improve the Convergence of ICP Using Augmented Measurements to Improve the onvergene of IP Jaopo Serafin, Giorgio Grisetti Dept. of omputer, ontrol and Management Engineering, Sapienza University of Rome, Via Ariosto 25, I-0085, Rome,

More information

Discrete sequential models and CRFs. 1 Case Study: Supervised Part-of-Speech Tagging

Discrete sequential models and CRFs. 1 Case Study: Supervised Part-of-Speech Tagging 0-708: Probabilisti Graphial Models 0-708, Spring 204 Disrete sequential models and CRFs Leturer: Eri P. Xing Sribes: Pankesh Bamotra, Xuanhong Li Case Study: Supervised Part-of-Speeh Tagging The supervised

More information

Parallelizing Frequent Web Access Pattern Mining with Partial Enumeration for High Speedup

Parallelizing Frequent Web Access Pattern Mining with Partial Enumeration for High Speedup Parallelizing Frequent Web Aess Pattern Mining with Partial Enumeration for High Peiyi Tang Markus P. Turkia Department of Computer Siene Department of Computer Siene University of Arkansas at Little Rok

More information

Improved Circuit-to-CNF Transformation for SAT-based ATPG

Improved Circuit-to-CNF Transformation for SAT-based ATPG Improved Ciruit-to-CNF Transformation for SAT-based ATPG Daniel Tille 1 René Krenz-Bååth 2 Juergen Shloeffel 2 Rolf Drehsler 1 1 Institute of Computer Siene, University of Bremen, 28359 Bremen, Germany

More information

Volume 3, Issue 9, September 2013 International Journal of Advanced Research in Computer Science and Software Engineering

Volume 3, Issue 9, September 2013 International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 9, September 2013 ISSN: 2277 128X International Journal of Advaned Researh in Computer Siene and Software Engineering Researh Paper Available online at: www.ijarsse.om A New-Fangled Algorithm

More information

Gray Codes for Reflectable Languages

Gray Codes for Reflectable Languages Gray Codes for Refletable Languages Yue Li Joe Sawada Marh 8, 2008 Abstrat We lassify a type of language alled a refletable language. We then develop a generi algorithm that an be used to list all strings

More information

Cross-layer Resource Allocation on Broadband Power Line Based on Novel QoS-priority Scheduling Function in MAC Layer

Cross-layer Resource Allocation on Broadband Power Line Based on Novel QoS-priority Scheduling Function in MAC Layer Communiations and Networ, 2013, 5, 69-73 http://dx.doi.org/10.4236/n.2013.53b2014 Published Online September 2013 (http://www.sirp.org/journal/n) Cross-layer Resoure Alloation on Broadband Power Line Based

More information

New Fuzzy Object Segmentation Algorithm for Video Sequences *

New Fuzzy Object Segmentation Algorithm for Video Sequences * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 24, 521-537 (2008) New Fuzzy Obet Segmentation Algorithm for Video Sequenes * KUO-LIANG CHUNG, SHIH-WEI YU, HSUEH-JU YEH, YONG-HUAI HUANG AND TA-JEN YAO Department

More information

Particle Swarm Optimization for the Design of High Diffraction Efficient Holographic Grating

Particle Swarm Optimization for the Design of High Diffraction Efficient Holographic Grating Original Artile Partile Swarm Optimization for the Design of High Diffration Effiient Holographi Grating A.K. Tripathy 1, S.K. Das, M. Sundaray 3 and S.K. Tripathy* 4 1, Department of Computer Siene, Berhampur

More information

Dr.Hazeem Al-Khafaji Dept. of Computer Science, Thi-Qar University, College of Science, Iraq

Dr.Hazeem Al-Khafaji Dept. of Computer Science, Thi-Qar University, College of Science, Iraq Volume 4 Issue 6 June 014 ISSN: 77 18X International Journal of Advaned Researh in Computer Siene and Software Engineering Researh Paper Available online at: www.ijarsse.om Medial Image Compression using

More information

Australian Journal of Basic and Applied Sciences. A new Divide and Shuffle Based algorithm of Encryption for Text Message

Australian Journal of Basic and Applied Sciences. A new Divide and Shuffle Based algorithm of Encryption for Text Message ISSN:1991-8178 Australian Journal of Basi and Applied Sienes Journal home page: www.ajbasweb.om A new Divide and Shuffle Based algorithm of Enryption for Text Message Dr. S. Muthusundari R.M.D. Engineering

More information

Micro-Doppler Based Human-Robot Classification Using Ensemble and Deep Learning Approaches

Micro-Doppler Based Human-Robot Classification Using Ensemble and Deep Learning Approaches Miro-Doppler Based Human-Robot Classifiation Using Ensemble and Deep Learning Approahes Sherif Abdulatif, Qian Wei, Fady Aziz, Bernhard Kleiner, Urs Shneider Department of Biomehatroni Systems, Fraunhofer

More information

Spatial-Aware Collaborative Representation for Hyperspectral Remote Sensing Image Classification

Spatial-Aware Collaborative Representation for Hyperspectral Remote Sensing Image Classification Spatial-Aware Collaborative Representation for Hyperspetral Remote Sensing Image ifiation Junjun Jiang, Member, IEEE, Chen Chen, Member, IEEE, Yi Yu, Xinwei Jiang, and Jiayi Ma Member, IEEE Representation-residual

More information

Performance of Histogram-Based Skin Colour Segmentation for Arms Detection in Human Motion Analysis Application

Performance of Histogram-Based Skin Colour Segmentation for Arms Detection in Human Motion Analysis Application World Aademy of Siene, Engineering and Tehnology 8 009 Performane of Histogram-Based Skin Colour Segmentation for Arms Detetion in Human Motion Analysis Appliation Rosalyn R. Porle, Ali Chekima, Farrah

More information

COST PERFORMANCE ASPECTS OF CCD FAST AUXILIARY MEMORY

COST PERFORMANCE ASPECTS OF CCD FAST AUXILIARY MEMORY COST PERFORMANCE ASPECTS OF CCD FAST AUXILIARY MEMORY Dileep P, Bhondarkor Texas Instruments Inorporated Dallas, Texas ABSTRACT Charge oupled devies (CCD's) hove been mentioned as potential fast auxiliary

More information

Exploring the Commonality in Feature Modeling Notations

Exploring the Commonality in Feature Modeling Notations Exploring the Commonality in Feature Modeling Notations Miloslav ŠÍPKA Slovak University of Tehnology Faulty of Informatis and Information Tehnologies Ilkovičova 3, 842 16 Bratislava, Slovakia miloslav.sipka@gmail.om

More information

Weak Dependence on Initialization in Mixture of Linear Regressions

Weak Dependence on Initialization in Mixture of Linear Regressions Proeedings of the International MultiConferene of Engineers and Computer Sientists 8 Vol I IMECS 8, Marh -6, 8, Hong Kong Weak Dependene on Initialization in Mixture of Linear Regressions Ryohei Nakano

More information

2017 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media,

2017 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, 2017 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any urrent or future media, inluding reprinting/republishing this material for advertising

More information

Polyhedron Volume-Ratio-based Classification for Image Recognition

Polyhedron Volume-Ratio-based Classification for Image Recognition Polyhedron Volume-Ratio-based Classifiation for Image Reognition Qingxiang Feng, Jeng-Shyang Pan, Senior Member, IEEE, Jar-Ferr Yang, Fellow, IEEE and Yang-ing Chou Abstrat In this paper, a novel method,

More information

Flow Demands Oriented Node Placement in Multi-Hop Wireless Networks

Flow Demands Oriented Node Placement in Multi-Hop Wireless Networks Flow Demands Oriented Node Plaement in Multi-Hop Wireless Networks Zimu Yuan Institute of Computing Tehnology, CAS, China {zimu.yuan}@gmail.om arxiv:153.8396v1 [s.ni] 29 Mar 215 Abstrat In multi-hop wireless

More information

Accommodations of QoS DiffServ Over IP and MPLS Networks

Accommodations of QoS DiffServ Over IP and MPLS Networks Aommodations of QoS DiffServ Over IP and MPLS Networks Abdullah AlWehaibi, Anjali Agarwal, Mihael Kadoh and Ahmed ElHakeem Department of Eletrial and Computer Department de Genie Eletrique Engineering

More information

Graph-Based vs Depth-Based Data Representation for Multiview Images

Graph-Based vs Depth-Based Data Representation for Multiview Images Graph-Based vs Depth-Based Data Representation for Multiview Images Thomas Maugey, Antonio Ortega, Pasal Frossard Signal Proessing Laboratory (LTS), Eole Polytehnique Fédérale de Lausanne (EPFL) Email:

More information

Cell Projection of Convex Polyhedra

Cell Projection of Convex Polyhedra Volume Graphis (2003) I. Fujishiro, K. Mueller, A. Kaufman (Editors) Cell Projetion of Convex Polyhedra Stefan Roettger and Thomas Ertl Visualization and Interative Systems Group University of Stuttgart

More information

A Partial Sorting Algorithm in Multi-Hop Wireless Sensor Networks

A Partial Sorting Algorithm in Multi-Hop Wireless Sensor Networks A Partial Sorting Algorithm in Multi-Hop Wireless Sensor Networks Abouberine Ould Cheikhna Department of Computer Siene University of Piardie Jules Verne 80039 Amiens Frane Ould.heikhna.abouberine @u-piardie.fr

More information

A Unified Subdivision Scheme for Polygonal Modeling

A Unified Subdivision Scheme for Polygonal Modeling EUROGRAPHICS 2 / A. Chalmers and T.-M. Rhyne (Guest Editors) Volume 2 (2), Number 3 A Unified Subdivision Sheme for Polygonal Modeling Jérôme Maillot Jos Stam Alias Wavefront Alias Wavefront 2 King St.

More information

A New RBFNDDA-KNN Network and Its Application to Medical Pattern Classification

A New RBFNDDA-KNN Network and Its Application to Medical Pattern Classification A New RBFNDDA-KNN Network and Its Appliation to Medial Pattern Classifiation Shing Chiang Tan 1*, Chee Peng Lim 2, Robert F. Harrison 3, R. Lee Kennedy 4 1 Faulty of Information Siene and Tehnology, Multimedia

More information

Rotation Invariant Spherical Harmonic Representation of 3D Shape Descriptors

Rotation Invariant Spherical Harmonic Representation of 3D Shape Descriptors Eurographis Symposium on Geometry Proessing (003) L. Kobbelt, P. Shröder, H. Hoppe (Editors) Rotation Invariant Spherial Harmoni Representation of 3D Shape Desriptors Mihael Kazhdan, Thomas Funkhouser,

More information

DETECTION METHOD FOR NETWORK PENETRATING BEHAVIOR BASED ON COMMUNICATION FINGERPRINT

DETECTION METHOD FOR NETWORK PENETRATING BEHAVIOR BASED ON COMMUNICATION FINGERPRINT DETECTION METHOD FOR NETWORK PENETRATING BEHAVIOR BASED ON COMMUNICATION FINGERPRINT 1 ZHANGGUO TANG, 2 HUANZHOU LI, 3 MINGQUAN ZHONG, 4 JIAN ZHANG 1 Institute of Computer Network and Communiation Tehnology,

More information

Batch Auditing for Multiclient Data in Multicloud Storage

Batch Auditing for Multiclient Data in Multicloud Storage Advaned Siene and Tehnology Letters, pp.67-73 http://dx.doi.org/0.4257/astl.204.50. Bath Auditing for Multilient Data in Multiloud Storage Zhihua Xia, Xinhui Wang, Xingming Sun, Yafeng Zhu, Peng Ji and

More information

timestamp, if silhouette(x, y) 0 0 if silhouette(x, y) = 0, mhi(x, y) = and mhi(x, y) < timestamp - duration mhi(x, y), else

timestamp, if silhouette(x, y) 0 0 if silhouette(x, y) = 0, mhi(x, y) = and mhi(x, y) < timestamp - duration mhi(x, y), else 3rd International Conferene on Multimedia Tehnolog(ICMT 013) An Effiient Moving Target Traking Strateg Based on OpenCV and CAMShift Theor Dongu Li 1 Abstrat Image movement involved bakground movement and

More information

Learning Discriminative and Shareable Features. Scene Classificsion

Learning Discriminative and Shareable Features. Scene Classificsion Learning Disriminative and Shareable Features for Sene Classifiation Zhen Zuo, Gang Wang, Bing Shuai, Lifan Zhao, Qingxiong Yang, and Xudong Jiang Nanyang Tehnologial University, Singapore, Advaned Digital

More information

A Fast Kernel-based Multilevel Algorithm for Graph Clustering

A Fast Kernel-based Multilevel Algorithm for Graph Clustering A Fast Kernel-based Multilevel Algorithm for Graph Clustering Inderjit Dhillon Dept. of Computer Sienes University of Texas at Austin Austin, TX 78712 inderjit@s.utexas.edu Yuqiang Guan Dept. of Computer

More information

Taming Decentralized POMDPs: Towards Efficient Policy Computation for Multiagent Settings

Taming Decentralized POMDPs: Towards Efficient Policy Computation for Multiagent Settings Taming Deentralized PMDPs: Towards ffiient Poliy omputation for Multiagent Settings. Nair and M. Tambe omputer Siene Dept. University of Southern alifornia Los Angeles A 90089 nair,tambe @us.edu M. Yokoo

More information

HEXA: Compact Data Structures for Faster Packet Processing

HEXA: Compact Data Structures for Faster Packet Processing Washington University in St. Louis Washington University Open Sholarship All Computer Siene and Engineering Researh Computer Siene and Engineering Report Number: 27-26 27 HEXA: Compat Data Strutures for

More information

Cluster Centric Fuzzy Modeling

Cluster Centric Fuzzy Modeling 10.1109/TFUZZ.014.300134, IEEE Transations on Fuzzy Systems TFS-013-0379.R1 1 Cluster Centri Fuzzy Modeling Witold Pedryz, Fellow, IEEE, and Hesam Izakian, Student Member, IEEE Abstrat In this study, we

More information

Multiple-Criteria Decision Analysis: A Novel Rank Aggregation Method

Multiple-Criteria Decision Analysis: A Novel Rank Aggregation Method 3537 Multiple-Criteria Deision Analysis: A Novel Rank Aggregation Method Derya Yiltas-Kaplan Department of Computer Engineering, Istanbul University, 34320, Avilar, Istanbul, Turkey Email: dyiltas@ istanbul.edu.tr

More information

An Approach to Physics Based Surrogate Model Development for Application with IDPSA

An Approach to Physics Based Surrogate Model Development for Application with IDPSA An Approah to Physis Based Surrogate Model Development for Appliation with IDPSA Ignas Mikus a*, Kaspar Kööp a, Marti Jeltsov a, Yuri Vorobyev b, Walter Villanueva a, and Pavel Kudinov a a Royal Institute

More information

Mean Deviation Similarity Index: Efficient and Reliable Full-Reference Image Quality Evaluator

Mean Deviation Similarity Index: Efficient and Reliable Full-Reference Image Quality Evaluator 1 Mean Deviation Similarity Index: Effiient and Reliable Full-Referene Image Quality Evaluator Hossein Ziaei Nafhi, Atena Shahkolaei, Rahid Hedjam, and Mohamed Cheriet, Senior Member, IEEE two images of

More information

We don t need no generation - a practical approach to sliding window RLNC

We don t need no generation - a practical approach to sliding window RLNC We don t need no generation - a pratial approah to sliding window RLNC Simon Wunderlih, Frank Gabriel, Sreekrishna Pandi, Frank H.P. Fitzek Deutshe Telekom Chair of Communiation Networks, TU Dresden, Dresden,

More information

Approximate logic synthesis for error tolerant applications

Approximate logic synthesis for error tolerant applications Approximate logi synthesis for error tolerant appliations Doohul Shin and Sandeep K. Gupta Eletrial Engineering Department, University of Southern California, Los Angeles, CA 989 {doohuls, sandeep}@us.edu

More information

arxiv: v1 [cs.db] 13 Sep 2017

arxiv: v1 [cs.db] 13 Sep 2017 An effiient lustering algorithm from the measure of loal Gaussian distribution Yuan-Yen Tai (Dated: May 27, 2018) In this paper, I will introdue a fast and novel lustering algorithm based on Gaussian distribution

More information

Calculation of typical running time of a branch-and-bound algorithm for the vertex-cover problem

Calculation of typical running time of a branch-and-bound algorithm for the vertex-cover problem Calulation of typial running time of a branh-and-bound algorithm for the vertex-over problem Joni Pajarinen, Joni.Pajarinen@iki.fi Otober 21, 2007 1 Introdution The vertex-over problem is one of a olletion

More information

Diffusion Kernels on Graphs and Other Discrete Structures

Diffusion Kernels on Graphs and Other Discrete Structures Diffusion Kernels on Graphs and Other Disrete Strutures Risi Imre Kondor ohn Lafferty Shool of Computer Siene Carnegie Mellon University Pittsburgh P 523 US KONDOR@CMUEDU LFFERTY@CSCMUEDU bstrat The appliation

More information

Generating the Reduced Set by Systematic Sampling

Generating the Reduced Set by Systematic Sampling Generating the Reduced Set by Systematic Sampling Chien-Chung Chang and Yuh-Jye Lee Email: {D9115009, yuh-jye}@mail.ntust.edu.tw Department of Computer Science and Information Engineering National Taiwan

More information

mahines. HBSP enhanes the appliability of the BSP model by inorporating parameters that reet the relative speeds of the heterogeneous omputing omponen

mahines. HBSP enhanes the appliability of the BSP model by inorporating parameters that reet the relative speeds of the heterogeneous omputing omponen The Heterogeneous Bulk Synhronous Parallel Model Tiani L. Williams and Rebea J. Parsons Shool of Computer Siene University of Central Florida Orlando, FL 32816-2362 fwilliams,rebeag@s.uf.edu Abstrat. Trends

More information

Implementing Load-Balanced Switches With Fat-Tree Networks

Implementing Load-Balanced Switches With Fat-Tree Networks Implementing Load-Balaned Swithes With Fat-Tree Networks Hung-Shih Chueh, Ching-Min Lien, Cheng-Shang Chang, Jay Cheng, and Duan-Shin Lee Department of Eletrial Engineering & Institute of Communiations

More information

MODEL AND ALGORITHMS OF THE FUZZY THREE-DIMENSIONAL AXIAL ASSIGNMENT PROBLEM WITH AN ADDITIONAL CONSTRAINT

MODEL AND ALGORITHMS OF THE FUZZY THREE-DIMENSIONAL AXIAL ASSIGNMENT PROBLEM WITH AN ADDITIONAL CONSTRAINT http://dx.doi.org/0.766/26-3-802 MODEL AND ALGORITHMS OF THE FUZZY THREE-DIMENSIONAL AXIAL ASSIGNMENT PROBLEM WITH AN ADDITIONAL CONSTRAINT C.-J. Lin * & K.-T. Ma 2 Department of Industrial Engineering

More information

Semantic Concept Detection Using Weighted Discretization Multiple Correspondence Analysis for Disaster Information Management

Semantic Concept Detection Using Weighted Discretization Multiple Correspondence Analysis for Disaster Information Management Semanti Conept Detetion Using Weighted Disretization Multiple Correspondene Analysis for Disaster Information Management Samira Pouyanfar and Shu-Ching Chen Shool of Computing and Information Sienes Florida

More information

INTERPOLATED AND WARPED 2-D DIGITAL WAVEGUIDE MESH ALGORITHMS

INTERPOLATED AND WARPED 2-D DIGITAL WAVEGUIDE MESH ALGORITHMS Proeedings of the COST G-6 Conferene on Digital Audio Effets (DAFX-), Verona, Italy, Deember 7-9, INTERPOLATED AND WARPED -D DIGITAL WAVEGUIDE MESH ALGORITHMS Vesa Välimäki Lab. of Aoustis and Audio Signal

More information

An Interactive-Voting Based Map Matching Algorithm

An Interactive-Voting Based Map Matching Algorithm Eleventh International Conferene on Mobile Data Management An Interative-Voting Based Map Mathing Algorithm Jing Yuan* University of Siene and Tehnology of China Hefei, China yuanjing@mail.ust.edu.n Yu

More information

Outline: Software Design

Outline: Software Design Outline: Software Design. Goals History of software design ideas Design priniples Design methods Life belt or leg iron? (Budgen) Copyright Nany Leveson, Sept. 1999 A Little History... At first, struggling

More information

Analysis of input and output configurations for use in four-valued CCD programmable logic arrays

Analysis of input and output configurations for use in four-valued CCD programmable logic arrays nalysis of input and output onfigurations for use in four-valued D programmable logi arrays J.T. utler H.G. Kerkhoff ndexing terms: Logi, iruit theory and design, harge-oupled devies bstrat: s in binary,

More information

Simulation of Crystallographic Texture and Anisotropie of Polycrystals during Metal Forming with Respect to Scaling Aspects

Simulation of Crystallographic Texture and Anisotropie of Polycrystals during Metal Forming with Respect to Scaling Aspects Raabe, Roters, Wang Simulation of Crystallographi Texture and Anisotropie of Polyrystals during Metal Forming with Respet to Saling Aspets D. Raabe, F. Roters, Y. Wang Max-Plank-Institut für Eisenforshung,

More information

HIGHER ORDER full-wave three-dimensional (3-D) large-domain techniques in

HIGHER ORDER full-wave three-dimensional (3-D) large-domain techniques in FACTA UNIVERSITATIS (NIŠ) SER.: ELEC. ENERG. vol. 21, no. 2, August 2008, 209-220 Comparison of Higher Order FEM and MoM/SIE Approahes in Analyses of Closed- and Open-Region Eletromagneti Problems Milan

More information

What are Cycle-Stealing Systems Good For? A Detailed Performance Model Case Study

What are Cycle-Stealing Systems Good For? A Detailed Performance Model Case Study What are Cyle-Stealing Systems Good For? A Detailed Performane Model Case Study Wayne Kelly and Jiro Sumitomo Queensland University of Tehnology, Australia {w.kelly, j.sumitomo}@qut.edu.au Abstrat The

More information

Plot-to-track correlation in A-SMGCS using the target images from a Surface Movement Radar

Plot-to-track correlation in A-SMGCS using the target images from a Surface Movement Radar Plot-to-trak orrelation in A-SMGCS using the target images from a Surfae Movement Radar G. Golino Radar & ehnology Division AMS, Italy ggolino@amsjv.it Abstrat he main topi of this paper is the formulation

More information

COMBINATION OF INTERSECTION- AND SWEPT-BASED METHODS FOR SINGLE-MATERIAL REMAP

COMBINATION OF INTERSECTION- AND SWEPT-BASED METHODS FOR SINGLE-MATERIAL REMAP Combination of intersetion- and swept-based methods for single-material remap 11th World Congress on Computational Mehanis WCCM XI) 5th European Conferene on Computational Mehanis ECCM V) 6th European

More information

特集 Road Border Recognition Using FIR Images and LIDAR Signal Processing

特集 Road Border Recognition Using FIR Images and LIDAR Signal Processing デンソーテクニカルレビュー Vol. 15 2010 特集 Road Border Reognition Using FIR Images and LIDAR Signal Proessing 高木聖和 バーゼル ファルディ Kiyokazu TAKAGI Basel Fardi ヘンドリック ヴァイゲル Hendrik Weigel ゲルド ヴァニーリック Gerd Wanielik This paper

More information

Algorithms, Mechanisms and Procedures for the Computer-aided Project Generation System

Algorithms, Mechanisms and Procedures for the Computer-aided Project Generation System Algorithms, Mehanisms and Proedures for the Computer-aided Projet Generation System Anton O. Butko 1*, Aleksandr P. Briukhovetskii 2, Dmitry E. Grigoriev 2# and Konstantin S. Kalashnikov 3 1 Department

More information

RANGE DOPPLER ALGORITHM FOR BISTATIC SAR PROCESSING BASED ON THE IMPROVED LOFFELD S BISTATIC FORMULA

RANGE DOPPLER ALGORITHM FOR BISTATIC SAR PROCESSING BASED ON THE IMPROVED LOFFELD S BISTATIC FORMULA Progress In Eletromagnetis Researh Letters, Vol. 27, 161 169, 2011 RANGE DOPPLER ALGORITHM FOR ISTATIC SAR PROCESSING ASED ON THE IMPROVED LOFFELD S ISTATIC FORMULA X. Wang 1, * and D. Y. Zhu 2 1 Nanjing

More information

System-Level Parallelism and Throughput Optimization in Designing Reconfigurable Computing Applications

System-Level Parallelism and Throughput Optimization in Designing Reconfigurable Computing Applications System-Level Parallelism and hroughput Optimization in Designing Reonfigurable Computing Appliations Esam El-Araby 1, Mohamed aher 1, Kris Gaj 2, arek El-Ghazawi 1, David Caliga 3, and Nikitas Alexandridis

More information

Methods for Multi-Dimensional Robustness Optimization in Complex Embedded Systems

Methods for Multi-Dimensional Robustness Optimization in Complex Embedded Systems Methods for Multi-Dimensional Robustness Optimization in Complex Embedded Systems Arne Hamann, Razvan Rau, Rolf Ernst Institute of Computer and Communiation Network Engineering Tehnial University of Braunshweig,

More information

Stable Road Lane Model Based on Clothoids

Stable Road Lane Model Based on Clothoids Stable Road Lane Model Based on Clothoids C Gakstatter*, S Thomas**, Dr P Heinemann*, Prof Gudrun Klinker*** *Audi Eletronis Venture GmbH, **Leibniz Universität Hannover, ***Tehnishe Universität Münhen

More information