Heterogeneous Radial Basis Function Networks

Size: px
Start display at page:

Download "Heterogeneous Radial Basis Function Networks"

Transcription

1 Proceedings of the International Conference on Neural Networks (ICNN ), vol. 2, pp. 23-2, June. Heterogeneous Radial Basis Function Networks D. Randall Wilson, Tony R. Martinez e-ail: Coputer Science Departent, Brigha Young University, Provo, UT 82, U.S.A. ABSTRACT Radial Basis Function (RBF) networks typically use a distance function designed for nueric attributes, such as Euclidean or city-block distance. This paper presents a heterogeneous distance function which is appropriate for applications with sybolic attributes, nueric attributes, or both. Epirical results on 3 data sets indicate that the heterogeneous distance etric yields significantly iproved generalization accuracy over Euclidean distance in ost cases involving sybolic attributes.. Introduction Much research has been directed at finding better ways of helping achines learn fro exaples. When doain knowledge in a particular area is weak, solutions can be expensive, tie consuing and even ipossible to derive using traditional prograing techniques. In such cases, neural networks can be used as tools to ake reasonable solutions possible or good solutions ore econoical. Such an autoated solution is often ore accurate than a hard-coded progra, because it learns fro actual data instead of aking assuptions about the proble. It often can adapt as the doain changes and often takes less tie to find a good solution than a prograer would. In addition, inductive learning solutions ay generalize well to unforeseen circustances. Radial Basis Function (RBF) networks [][3][5] have received uch attention recently because they provide accurate generalization on a wide range of applications, yet can often be trained orders of agnitude faster [] than other odels such as backpropagation neural networks [8] or genetic algoriths []. Radial basis function networks ake use of a distance function to find out how different two input vectors are (one being presented to the network and the other stored in a hidden node). This distance function is typically designed for nueric attributes only and is inappropriate for noinal (unordered sybolic) attributes. This paper introduces a heterogeneous distance function which allows radial basis function networks to appropriately handle applications that contain noinal attributes, nueric attributes, or both. Section 2 introduces the basic radial basis function network that will be used to deonstrate the usefulness of the heterogeneous distance function. Section 3 introduces the distance function itself. Section presents epirical results which indicate that in ost cases the heterogeneous distance function significantly iproves generalization over Euclidean distance when sybolic attributes are present and never reduces accuracy in copletely nueric doains. Section 5 presents conclusions and future research areas. 2. Radial Basis Function Network This section presents a radial basis function (RBF) network that is used as a probabilistic neural network (PNN) [] for classification. The distance function presented in this paper could be appropriately used on any different kinds of basis-function networks, so this particular network is just one exaple of its use. This network was chosen because of its siplicity, which helps to focus on the new distance function instead of on other factors. The network learns fro a training set T, which is a collection of exaples called instances. Each instance i has an input vector y i, and an output class, denoted as class i. During execution, the network receives additional input vectors, denoted as x, and outputs the class that x sees ost likely to belong to. The probabilistic neural network is shown in Figure. The first (leftost) layer contains input, each of which receives an input value fro the x: Input x x2 x3 Hidden h h2 h3 h Class c c2 Decision node Figure. Radial Basis Function Network. z

2 corresponding eleent in the input vector x. Thus, for an application with input attributes, there are input. All connections in the network have a weight of. In essence, this eans that the input vector is passed directly to each hidden node. There is one hidden node for each training instance i in the training set. Each hidden node h i has a center point y i associated with it, which is the input vector of instance i. A hidden node also has a value σ i which deterines the size of its receptive field. This value is set to the distance of the nearest neighbor of i in the training set, using the sae distance function as that used during execution. A hidden node receives an input vector x and outputs an activation given by the function: g(x, y i,σ i ) = exp[-d 2 (x, y i )/2σ i 2 ] () where D is a distance function such as Euclidean distance or the heterogeneous distance function that will be discussed in Section 3. This function g is a Gaussian function which returns a value of if x and y i are equal, and drops to an insignificant value as the distance grows. Each hidden node h i is connected to a single class node. If the output class of instance i is j, then h i is connected to class node c j. Each class node c j coputes the su of the activations of the hidden that are connected to it (i.e., all the hidden for a particular class) and passes this su to a decision node. The decision node outputs the class with the highest sued activation. One of the greatest advantages of this network is that it does not require any iterative training. One disadvantage of this network is that it has one hidden node for each training instance and thus requires ore coputational resources during execution than any other odels. In addition, it does not iteratively train weights on any of the connections, which can ake its generalization less flexible. 3. Heterogeneous Distance Function In Section 2, a probabilistic neural network was presented using radial basis functions and a siple weighting schee that avoided iterative training. In this section, several alternatives for the distance function D are defined, including a new heterogeneous distance function H. Radial basis functions typically use the Euclidean distance function: E(x, y) = (x i y i ) 2 (2) i= where is the nuber of input variables (attributes) in the application. An alternative function, the cityblock or Manhattan distance function, uses less coputation and often does not significantly change the results []. It is defined as: M(x, y) = x i y i (3) i= One proble with both of these distance functions is that they assue that the input variables are linear. However, there are any applications that have noinal attributes. A noinal attribute is one with a discrete set of attribute values that are unordered. For exaple, a variable representing syptos ight have possible values of headache, sore throat, chest pains, stoach pains, ear ache, and blurry vision. Using a linear distance easureent on such values akes little sense in this case, because nubers assigned to the values are in an arbitrary order. In such cases a distance function is needed that handles noinal inputs appropriately. Stanfill & Waltz [] introduced the value difference etric (VDM) which has been used as the basis of several distance functions in the area of achine learning [2][3][]. Using VDM, the distance between two values x and y of a single attribute a is given as: C N vd a (x, y) = a,x,c c= N a,x N a,y,c N a,y 2 () where N a,x is the nuber of ties attribute a had value x; N a,x,c is the nuber of ties attribute a had value x and the output class was c; and C is the nuber of output classes. Using this distance easure, two values are considered to be closer if they have ore siilar classifications, regardless of the order of the values.

3 Soe odels that have used the VDM or extensions of it (notably PEBLS []) have discretized continuous attributes into a soewhat arbitrary nuber of discrete ranges and then treated these values as noinal values. Discretization throws away uch of the inforation available to the learning odel and often reduces generalization accuracy [2]. The Heterogeneous Radial Basis Function (HRBF) odel presented in this paper akes use of a new distance function that uses the above part of the VDM as a building block. In the HRBF odel, the heterogeneous distance H between two vectors x and y is given as: H(x, y) = d 2 a (x a, y a ) (5) a=, if x or y is unknown; otherwise... d a (x, y) = noralized_ vd a (x, y), if a is noinal noralized_ diff a (x, y), if a is nueric () where is the nuber of attributes. The function d a (x,y) returns a distance between the two attribute values x and y using one of two functions (defined below), depending on whether the attribute is noinal or nueric. Many data sets contain unknown input values which ust be handled appropriately in a practical syste. The function d a (x,y) therefore returns a distance of if either x or y is unknown. Other ore coplicated ethods have been tried, as in [], but with little effect on accuracy. The function H is siilar to that used in [], except that it uses VDM instead of an overlap etric for noinal values and noralizes differently. One weakness of the basic Euclidean and Manhattan distance functions is that if one of the input variables has a relatively large range, then it can overpower the other input variables. For exaple, suppose an application has just two input attributes, f and g. If f can have values fro to and g has values only fro to, then g s influence on the distance function will usually be overpowered by f s influence. Therefore, distances are often noralized by dividing the distance for each variable by the range of that attribute, so that the distance for each input variable is in the range... However, this allows outliers (extree values) to have a profound effect on the contribution of an attribute. For exaple, if a variable has values which are in the range.. in alost every case but with one (possibly erroneous) value of 5, then dividing by the range would alost always result in a value less than.2. A ore robust alternative is to divide the values by the standard deviation in order to reduce the effect of extree values on the typical cases. In the heterogeneous distance etric, the situation is ore coplicated because the noinal and nueric distance values coe fro different types of easureents. It is therefore necessary to find a way to scale these two different easureents into approxiately the sae range in order to give each variable a siilar influence on the overall distance easureent. Since 5% of the values in a noral distribution fall within two standard deviations of the ean, the difference between nueric values is divided by standard deviations in order to scale each value into a range that is usually of width.. Using VDM, the average value for N a,x,c /N a,x (as well as for N a,y,c /N a,y ) is /C. Since the difference is squared and then added C ties, the su is usually in the neighborhood of C(/C 2 )=/C. This su is therefore ultiplied by C to get it in the range.., aking it roughly equal in influence to noralized nueric values. The functions noralized_vd and noralized_diff are thus defined as: N noralized_ vd a (x, y) = C * a,x,c N 2 C a,y,c () c= N a,x N a,y noralized_ diff a (x, y) = x y σ a (8) where C is the nuber of classes, N is defined as in (), and σ a is the standard deviation of the nueric values of attribute a. Note that in practice the square root in () is not perfored since the squared attribute distances are needed in (5) to copute H. Siilarly, the square root in (5) is not typically perfored in coputing H, since the squared distance (H 2 instead of D 2 in this case) is used in () to copute g, the activation of a hidden node.

4 . Epirical Results The Heterogeneous Radial Basis Function (HRBF) algorith was ipleented and tested on several databases fro the Machine Learning Database Repository at the University of California Irvine [5]. Each test consisted of ten trials, each using one of ten partitions of the data randoly selected fro the data sets, i.e., -fold cross-validation. Each trial consisted of building a network using % of the training instances in hidden and then using this network to classify the reaining % of the instances to see how any were classified correctly. In order to see what effect the new heterogeneous distance function has on accuracy, a hoogeneous version of the algorith was ipleented as well, which is exactly the sae as HRBF, except that it uses a noralized Euclidean distance function. This is accoplished by using noralized_diff a (x,y) instead of noralized_vd a (x,y) in () for noinal as well as for nueric attributes. The hoogeneous algorith will be referred to as the default algorith, or siply RBF. Both algoriths used the sae training sets and test sets for each trial. The average accuracy for each database over all trials is shown in Figure 2. A bold value indicates which value was highest for each database. One asterisk (*) indicates that the higher value is statistically significantly higher at a % confidence level, using a one-tailed paired t-test. Two asterisks (**) are used to ark differences that are significant at a 5% or higher confidence interval. Figure 2 also lists the nuber of continuous and noinal input attributes for each database. Note that the accuracy for every application that has only nueric attributes is exactly the sae for both RBF and HRBF. This is no surprise, since the distance functions are equivalent on nueric attributes. However, on the databases that have soe or all noinal attributes, HRBF obtained higher generalization accuracy than RBF in 2 out of 23 cases, of which were significant at the 5% level or above. RBF had a higher accuracy in only four cases, and only one of those (the Zoo data set) had a difference that was statistically significant. It is interesting to note that in the Zoo data set, 5 out of of the attributes are boolean, and the reaining attribute, while not linear, is actually an ordered attribute. These attributes are tagged as noinal, but the Euclidean distance function is appropriate for the as well. In all, HRBF perfored as well or better than the default algorith in 2 out of 3 cases. The above results indicate that the heterogeneous distance function is typically ore appropriate than the Euclidean distance function for applications with one or ore noinal attributes, and is equivalent to it for doains without noinal attributes. RBF Database (Euclidean) Annealing. Audiology 3. Australian-Credit 8. Bridges 52.3 Credit-Screening 5.3 DNA Prooters 5.2 Echocardiogra 8. Flags 5. Hayes-Roth 52. Heart 8. Heart-Disease (Hungarian). Heart-Disease (More) 5.5 Heart-Disease (Swiss) Hepatitis.33 Horse-Colic. House-Votes-8.22 Iage Segentation 8.8 Solar-Flare 8. Solar-Flare 2.53 Soybean-Large 3. Thyroid-Disease (Euthyroid). Tic-Tac-Toe 5.8 Zoo 8.8** Average: 5. Nueric Databases Breast-Cancer-Wisconsin Liver-Disorders Iris Pia-Indians-Diabetes Sat.Test Vowel Wine HRBF. 5.** 83.** 55.2* 83.8**.**. 5.** 5.** 8..2** ** **..** ** Nueric Attributes Noinal Attributes Figure 2. Coparative experiental results of RBF and HRBF.

5 5. Conclusions & Future Research The Heterogeneous Radial Basis Function (HRBF) network uses a noralized heterogeneous distance function which is typically ore appropriate than the Euclidean distance function for applications that have at least soe noinal or sybolic attributes. By using a ore appropriate distance function, higher generalization accuracy can be obtained on ost typical heterogeneous or copletely sybolic doains. Furtherore, the heterogeneous distance function is equivalent to a noralized Euclidean distance function in copletely nueric doains so generalization accuracy will be identical in those doains as well. In this paper the heterogeneous distance function was used with a probabilistic neural network for classification, which allowed very fast training at the cost of a large, static network. However, this function is appropriate for a wide range of basis function networks that use distance functions. Current research is seeking to test the heterogeneous distance function on a variety of other odels, including various Radial Basis Function networks and instance-based achine learning systes. The noralization factors are also being exained to see if they provide the best possible noralization. In addition, it appears that soe data which is tagged as noinal is often soewhat ordered. It is hypothesized that if the values of noinal attributes are randoly rearranged then the HRBF would perfor about the sae (since it does not depend on the ordering of noinal values), but that the hoogeneous RBF would suffer a loss in accuracy. The accuracy of this hypothesis and the severity of the loss in accuracy are currently being explored. The results of this research are encouraging, and show that heterogeneous distance functions can be used to apply basis function networks to a wider variety of applications and achieve higher generalization accuracy than the hoogeneous distance functions used in the past. References [] Chen, S., C. R. N. Cowen, and P. M. Grant, Orthogonal Least Squares Learning Algorith for Radial Basis Function Networks, IEEE Transactions on Neural Networks, vol. 2, no. 2, pp. 32-3,. [2] Cost, Scott, and Steven Salzberg, A Weighted Nearest Neighbor Algorith for Learning with Sybolic Features, Machine Learning, vol., pp. 5-8, 3. [3] Doingos, Pedro, Rule Induction and Instance-Based Learning: A Unified Approach, to appear in The 5 International Joint Conference on Artificial Intelligence (IJCAI-5), 5. [] Giraud-Carrier, Christophe, and Tony Martinez, An Efficient Metric for Heterogeneous Inductive Learning Applications in the Attribute-Value Language, Intelligent Systes, pp. 3-35, 5. [5] Murphy, P. M., and D. W. Aha, UCI Repository of Machine Learning Databases. Irvine, CA: University of California Irvine, Departent of Inforation and Coputer Science. Internet: ftp://ftp.ics.uci.edu/pub/achine-learning-databases, 3. [] Rachlin, John, Sion Kasif, Steven Salzberg, David W. Aha, Towards a Better Understanding of Meory-Based and Bayesian Classifiers, in Proceedings of the Eleventh International Machine Learning Conference, New Brunswick, NJ: Morgan Kaufann, pp ,. [] Renals, Steve, and Richard Rohwer, Phonee Classification Experients Using Radial Basis Functions, Proceedings of the IEEE International Joint Conference on Neural Networks (IJCNN 8), vol., pp. -,. [8] Ruelhart, D. E., and J. L. McClelland, Parallel Distributed Processing, MIT Press,. [] Spears, Willia M., Kenneth A. De Jong, Thoas Bäck, David B. Fogel, and Hugo de Garis, An Overview of Evolutionary Coputation, Proceedings of the European Conference on Machine Learning, vol., pp. 2-5, 3. [] Specht, Donald F., (2). Enhanceents to Probabilistic Neural Networks, in Proceedings International Joint Conference on Neural Networks (IJCNN 2), vol., pp. -8. [] Stanfill, C., and D. Waltz, Toward eory-based reasoning, Counications of the ACM, vol. 2, Deceber, pp ,. [2] Ventura, Dan, and Tony Martinez, An Epirical Coparison of Discretization Models, Proceedings of the th International Syposiu on Coputer and Inforation Sciences, pp. 3-5, 5. [3] Wasseran, Philip D., Advanced Methods in Neural Coputing, New York, NY: Van Nostrand Reinhold, pp. -, 3. [] Wilson, D. Randall, Prototype Styles of Generalization, Master s Thesis, Brigha Young University,. [5] Wong, Yiu-fai, How Gaussian Radial Basis Functions Work, Proceedings of the IEEE International Joint Conference on Neural Networks (IJCNN ), vol. 2, pp ,.

Heterogeneous Radial Basis Function Networks

Heterogeneous Radial Basis Function Networks Brigham Young University BYU ScholarsArchive All Faculty Publications -- Heterogeneous Radial Basis Function Networks Tony R. Martinez martinez@cs.byu.edu D. Randall Wilson Follow this and additional works

More information

Value Difference Metrics for Continuously Valued Attributes

Value Difference Metrics for Continuously Valued Attributes Proceedings of the International Conference on Artificial Intelligence, Expert Systems and Neural Networks (AIE 96), pp. 11-14, 1996. Value Difference Metrics for Continuously Valued Attributes D. Randall

More information

Instance-Based Learning with Genetically Derived Attribute Weights

Instance-Based Learning with Genetically Derived Attribute Weights Proceedings of the International Conference on Artificial Intelligence, Expert Systems and Neural Networks (AIE 96), pp. 11-14, 1996. Instance-Based Learning with Genetically Derived Attribute Weights

More information

Combining Cross-Validation and Confidence to Measure Fitness

Combining Cross-Validation and Confidence to Measure Fitness Combining Cross-Validation and Confidence to Measure Fitness D. Randall Wilson Tony R. Martinez fonix corporation Brigham Young University WilsonR@fonix.com martinez@cs.byu.edu Abstract Neural network

More information

The Potential of Prototype Styles of Generalization. D. Randall Wilson Tony R. Martinez

The Potential of Prototype Styles of Generalization. D. Randall Wilson Tony R. Martinez Proceedings of the 6th Australian Joint Conference on Artificial Intelligence (AI 93), pp. 356-361, Nov. 1993. The Potential of Prototype Styles of Generalization D. Randall Wilson Tony R. Martinez Computer

More information

Detection of Outliers and Reduction of their Undesirable Effects for Improving the Accuracy of K-means Clustering Algorithm

Detection of Outliers and Reduction of their Undesirable Effects for Improving the Accuracy of K-means Clustering Algorithm Detection of Outliers and Reduction of their Undesirable Effects for Iproving the Accuracy of K-eans Clustering Algorith Bahan Askari Departent of Coputer Science and Research Branch, Islaic Azad University,

More information

A Novel Fast Constructive Algorithm for Neural Classifier

A Novel Fast Constructive Algorithm for Neural Classifier A Novel Fast Constructive Algorith for Neural Classifier Xudong Jiang Centre for Signal Processing, School of Electrical and Electronic Engineering Nanyang Technological University Nanyang Avenue, Singapore

More information

Improved Heterogeneous Distance Functions

Improved Heterogeneous Distance Functions Journal of Artificial Intelligence Research 6 (1997) 1-34 Submitted 5/96; published 1/97 Improved Heterogeneous Distance Functions D. Randall Wilson RANDY@AXON.CS.BYU.EDU Tony R. Martinez MARTINEZ@CS.BYU.EDU

More information

Clustering. Cluster Analysis of Microarray Data. Microarray Data for Clustering. Data for Clustering

Clustering. Cluster Analysis of Microarray Data. Microarray Data for Clustering. Data for Clustering Clustering Cluster Analysis of Microarray Data 4/3/009 Copyright 009 Dan Nettleton Group obects that are siilar to one another together in a cluster. Separate obects that are dissiilar fro each other into

More information

TensorFlow and Keras-based Convolutional Neural Network in CAT Image Recognition Ang LI 1,*, Yi-xiang LI 2 and Xue-hui LI 3

TensorFlow and Keras-based Convolutional Neural Network in CAT Image Recognition Ang LI 1,*, Yi-xiang LI 2 and Xue-hui LI 3 2017 2nd International Conference on Coputational Modeling, Siulation and Applied Matheatics (CMSAM 2017) ISBN: 978-1-60595-499-8 TensorFlow and Keras-based Convolutional Neural Network in CAT Iage Recognition

More information

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 13

Computer Aided Drafting, Design and Manufacturing Volume 26, Number 2, June 2016, Page 13 Coputer Aided Drafting, Design and Manufacturing Volue 26, uber 2, June 2016, Page 13 CADDM 3D reconstruction of coplex curved objects fro line drawings Sun Yanling, Dong Lijun Institute of Mechanical

More information

Geo-activity Recommendations by using Improved Feature Combination

Geo-activity Recommendations by using Improved Feature Combination Geo-activity Recoendations by using Iproved Feature Cobination Masoud Sattari Middle East Technical University Ankara, Turkey e76326@ceng.etu.edu.tr Murat Manguoglu Middle East Technical University Ankara,

More information

The optimization design of microphone array layout for wideband noise sources

The optimization design of microphone array layout for wideband noise sources PROCEEDINGS of the 22 nd International Congress on Acoustics Acoustic Array Systes: Paper ICA2016-903 The optiization design of icrophone array layout for wideband noise sources Pengxiao Teng (a), Jun

More information

CS 361 Meeting 8 9/24/18

CS 361 Meeting 8 9/24/18 CS 36 Meeting 8 9/4/8 Announceents. Hoework 3 due Friday. Review. The closure properties of regular languages provide a way to describe regular languages by building the out of sipler regular languages

More information

The Internal Conflict of a Belief Function

The Internal Conflict of a Belief Function The Internal Conflict of a Belief Function Johan Schubert Abstract In this paper we define and derive an internal conflict of a belief function We decopose the belief function in question into a set of

More information

Evaluation of a multi-frame blind deconvolution algorithm using Cramér-Rao bounds

Evaluation of a multi-frame blind deconvolution algorithm using Cramér-Rao bounds Evaluation of a ulti-frae blind deconvolution algorith using Craér-Rao bounds Charles C. Beckner, Jr. Air Force Research Laboratory, 3550 Aberdeen Ave SE, Kirtland AFB, New Mexico, USA 87117-5776 Charles

More information

Boosted Detection of Objects and Attributes

Boosted Detection of Objects and Attributes L M M Boosted Detection of Objects and Attributes Abstract We present a new fraework for detection of object and attributes in iages based on boosted cobination of priitive classifiers. The fraework directly

More information

Leveraging Relevance Cues for Improved Spoken Document Retrieval

Leveraging Relevance Cues for Improved Spoken Document Retrieval Leveraging Relevance Cues for Iproved Spoken Docuent Retrieval Pei-Ning Chen 1, Kuan-Yu Chen 2 and Berlin Chen 1 National Taiwan Noral University, Taiwan 1 Institute of Inforation Science, Acadeia Sinica,

More information

Privacy-preserving String-Matching With PRAM Algorithms

Privacy-preserving String-Matching With PRAM Algorithms Privacy-preserving String-Matching With PRAM Algoriths Report in MTAT.07.022 Research Seinar in Cryptography, Fall 2014 Author: Sander Sii Supervisor: Peeter Laud Deceber 14, 2014 Abstract In this report,

More information

Rule Extraction using Artificial Neural Networks

Rule Extraction using Artificial Neural Networks Rule Extraction using Artificial Neural Networks S. M. Karuzzaan 1 Ahed Ryadh Hasan 2 Abstract Artificial neural networks have been successfully applied to a variety of business application probles involving

More information

COLOR HISTOGRAM AND DISCRETE COSINE TRANSFORM FOR COLOR IMAGE RETRIEVAL

COLOR HISTOGRAM AND DISCRETE COSINE TRANSFORM FOR COLOR IMAGE RETRIEVAL COLOR HISTOGRAM AND DISCRETE COSINE TRANSFORM FOR COLOR IMAGE RETRIEVAL 1 Te-Wei Chiang ( 蔣德威 ), 2 Tienwei Tsai ( 蔡殿偉 ), 3 Jeng-Ping Lin ( 林正平 ) 1 Dept. of Accounting Inforation Systes, Chilee Institute

More information

Identifying Converging Pairs of Nodes on a Budget

Identifying Converging Pairs of Nodes on a Budget Identifying Converging Pairs of Nodes on a Budget Konstantina Lazaridou Departent of Inforatics Aristotle University, Thessaloniki, Greece konlaznik@csd.auth.gr Evaggelia Pitoura Coputer Science and Engineering

More information

Mapping Data in Peer-to-Peer Systems: Semantics and Algorithmic Issues

Mapping Data in Peer-to-Peer Systems: Semantics and Algorithmic Issues Mapping Data in Peer-to-Peer Systes: Seantics and Algorithic Issues Anastasios Keentsietsidis Marcelo Arenas Renée J. Miller Departent of Coputer Science University of Toronto {tasos,arenas,iller}@cs.toronto.edu

More information

Wavelets for Computer Graphics: A Primer Part 1

Wavelets for Computer Graphics: A Primer Part 1 Wavelets for Coputer Graphics: A Prier Part Eric J. Stollnitz Tony D. DeRose David H. Salesin University of Washington Introduction Wavelets are a atheatical tool for hierarchically decoposing functions.

More information

Closing The Performance Gap between Causal Consistency and Eventual Consistency

Closing The Performance Gap between Causal Consistency and Eventual Consistency Closing The Perforance Gap between Causal Consistency and Eventual Consistency Jiaqing Du Călin Iorgulescu Aitabha Roy Willy Zwaenepoel EPFL ABSTRACT It is well known that causal consistency is ore expensive

More information

Image Filter Using with Gaussian Curvature and Total Variation Model

Image Filter Using with Gaussian Curvature and Total Variation Model IJECT Vo l. 7, Is s u e 3, Ju l y - Se p t 016 ISSN : 30-7109 (Online) ISSN : 30-9543 (Print) Iage Using with Gaussian Curvature and Total Variation Model 1 Deepak Kuar Gour, Sanjay Kuar Shara 1, Dept.

More information

Modeling Parallel Applications Performance on Heterogeneous Systems

Modeling Parallel Applications Performance on Heterogeneous Systems Modeling Parallel Applications Perforance on Heterogeneous Systes Jaeela Al-Jaroodi, Nader Mohaed, Hong Jiang and David Swanson Departent of Coputer Science and Engineering University of Nebraska Lincoln

More information

Solving the Damage Localization Problem in Structural Health Monitoring Using Techniques in Pattern Classification

Solving the Damage Localization Problem in Structural Health Monitoring Using Techniques in Pattern Classification Solving the Daage Localization Proble in Structural Health Monitoring Using Techniques in Pattern Classification CS 9 Final Project Due Dec. 4, 007 Hae Young Noh, Allen Cheung, Daxia Ge Introduction Structural

More information

Defining and Surveying Wireless Link Virtualization and Wireless Network Virtualization

Defining and Surveying Wireless Link Virtualization and Wireless Network Virtualization 1 Defining and Surveying Wireless Link Virtualization and Wireless Network Virtualization Jonathan van de Belt, Haed Ahadi, and Linda E. Doyle The Centre for Future Networks and Counications - CONNECT,

More information

A Measurement-Based Model for Parallel Real-Time Tasks

A Measurement-Based Model for Parallel Real-Time Tasks A Measureent-Based Model for Parallel Real-Tie Tasks Kunal Agrawal 1 Washington University in St. Louis St. Louis, MO, USA kunal@wustl.edu https://orcid.org/0000-0001-5882-6647 Sanjoy Baruah 2 Washington

More information

Verdict Accuracy of Quick Reduct Algorithm using Clustering, Classification Techniques for Gene Expression Data

Verdict Accuracy of Quick Reduct Algorithm using Clustering, Classification Techniques for Gene Expression Data Verdict Accuracy of Quick Reduct Algorith using Clustering, Classification Techniques for Gene Expression Data T.Chandrasekhar 1, K.Thangavel 2 and E.N.Sathishkuar 3 1 Departent of Coputer Science, eriyar

More information

Secure Wireless Multihop Transmissions by Intentional Collisions with Noise Wireless Signals

Secure Wireless Multihop Transmissions by Intentional Collisions with Noise Wireless Signals Int'l Conf. Wireless etworks ICW'16 51 Secure Wireless Multihop Transissions by Intentional Collisions with oise Wireless Signals Isau Shiada 1 and Hiroaki Higaki 1 1 Tokyo Denki University, Japan Abstract

More information

Scheduling Parallel Real-Time Recurrent Tasks on Multicore Platforms

Scheduling Parallel Real-Time Recurrent Tasks on Multicore Platforms IEEE TRANSACTIONS ON PARALLEL AND DISTRIBUTED SYSTEMS, VOL., NO., NOV 27 Scheduling Parallel Real-Tie Recurrent Tasks on Multicore Platfors Risat Pathan, Petros Voudouris, and Per Stenströ Abstract We

More information

Novel Image Representation and Description Technique using Density Histogram of Feature Points

Novel Image Representation and Description Technique using Density Histogram of Feature Points Novel Iage Representation and Description Technique using Density Histogra of Feature Points Keneilwe ZUVA Departent of Coputer Science, University of Botswana, P/Bag 00704 UB, Gaborone, Botswana and Tranos

More information

ELEVATION SURFACE INTERPOLATION OF POINT DATA USING DIFFERENT TECHNIQUES A GIS APPROACH

ELEVATION SURFACE INTERPOLATION OF POINT DATA USING DIFFERENT TECHNIQUES A GIS APPROACH ELEVATION SURFACE INTERPOLATION OF POINT DATA USING DIFFERENT TECHNIQUES A GIS APPROACH Kulapraote Prathuchai Geoinforatics Center, Asian Institute of Technology, 58 Moo9, Klong Luang, Pathuthani, Thailand.

More information

Utility-Based Resource Allocation for Mixed Traffic in Wireless Networks

Utility-Based Resource Allocation for Mixed Traffic in Wireless Networks IEEE IFOCO 2 International Workshop on Future edia etworks and IP-based TV Utility-Based Resource Allocation for ixed Traffic in Wireless etworks Li Chen, Bin Wang, Xiaohang Chen, Xin Zhang, and Dacheng

More information

Grading Results Total 100

Grading Results Total 100 University of California, Berkeley College of Engineering Departent of Electrical Engineering and Coputer Sciences Fall 2003 Instructor: Dave Patterson 2003-11-19 v1.9 CS 152 Exa #2 Solutions Personal

More information

Predicting x86 Program Runtime for Intel Processor

Predicting x86 Program Runtime for Intel Processor Predicting x86 Progra Runtie for Intel Processor Behra Mistree, Haidreza Haki Javadi, Oid Mashayekhi Stanford University bistree,hrhaki,oid@stanford.edu 1 Introduction Progras can be equivalent: given

More information

Analysing Real-Time Communications: Controller Area Network (CAN) *

Analysing Real-Time Communications: Controller Area Network (CAN) * Analysing Real-Tie Counications: Controller Area Network (CAN) * Abstract The increasing use of counication networks in tie critical applications presents engineers with fundaental probles with the deterination

More information

Oblivious Routing for Fat-Tree Based System Area Networks with Uncertain Traffic Demands

Oblivious Routing for Fat-Tree Based System Area Networks with Uncertain Traffic Demands Oblivious Routing for Fat-Tree Based Syste Area Networks with Uncertain Traffic Deands Xin Yuan Wickus Nienaber Zhenhai Duan Departent of Coputer Science Florida State University Tallahassee, FL 3306 {xyuan,nienaber,duan}@cs.fsu.edu

More information

Energy-Efficient Disk Replacement and File Placement Techniques for Mobile Systems with Hard Disks

Energy-Efficient Disk Replacement and File Placement Techniques for Mobile Systems with Hard Disks Energy-Efficient Disk Replaceent and File Placeent Techniques for Mobile Systes with Hard Disks Young-Jin Ki School of Coputer Science & Engineering Seoul National University Seoul 151-742, KOREA youngjk@davinci.snu.ac.kr

More information

Reconstruction of Time Series using Optimal Ordering of ICA Components

Reconstruction of Time Series using Optimal Ordering of ICA Components Reconstruction of Tie Series using Optial Ordering of ICA Coponents Ar Goneid and Abear Kael Departent of Coputer Science & Engineering, The Aerican University in Cairo, Cairo, Egypt e-ail: goneid@aucegypt.edu

More information

A Study of the Relationship Between Support Vector Machine and Gabriel Graph

A Study of the Relationship Between Support Vector Machine and Gabriel Graph A Study of the Relationship Between Support Vector Machine and Gabriel Graph Wan Zhang and Irwin King {wzhang, king}@cse.cuhk.edu.hk Departent of Coputer Science & Engineering The Chinese University of

More information

MAPPING THE DATA FLOW MODEL OF COMPUTATION INTO AN ENHANCED VON NEUMANN PROCESSOR * Peter M. Maurer

MAPPING THE DATA FLOW MODEL OF COMPUTATION INTO AN ENHANCED VON NEUMANN PROCESSOR * Peter M. Maurer MAPPING THE DATA FLOW MODEL OF COMPUTATION INTO AN ENHANCED VON NEUMANN PROCESSOR * Peter M. Maurer Departent of Coputer Science and Engineering University of South Florida Tapa, FL 33620 Abstract -- The

More information

A CRYPTANALYTIC ATTACK ON RC4 STREAM CIPHER

A CRYPTANALYTIC ATTACK ON RC4 STREAM CIPHER A CRYPTANALYTIC ATTACK ON RC4 STREAM CIPHER VIOLETA TOMAŠEVIĆ, SLOBODAN BOJANIĆ 2 and OCTAVIO NIETO-TALADRIZ 2 The Mihajlo Pupin Institute, Volgina 5, 000 Belgrade, SERBIA AND MONTENEGRO 2 Technical University

More information

Gromov-Hausdorff Distance Between Metric Graphs

Gromov-Hausdorff Distance Between Metric Graphs Groov-Hausdorff Distance Between Metric Graphs Jiwon Choi St Mark s School January, 019 Abstract In this paper we study the Groov-Hausdorff distance between two etric graphs We copute the precise value

More information

Multi Packet Reception and Network Coding

Multi Packet Reception and Network Coding The 2010 Military Counications Conference - Unclassified Progra - etworking Protocols and Perforance Track Multi Packet Reception and etwork Coding Aran Rezaee Research Laboratory of Electronics Massachusetts

More information

1 Extended Boolean Model

1 Extended Boolean Model 1 EXTENDED BOOLEAN MODEL It has been well-known that the Boolean odel is too inflexible, requiring skilful use of Boolean operators to obtain good results. On the other hand, the vector space odel is flexible

More information

I ve Seen Enough : Incrementally Improving Visualizations to Support Rapid Decision Making

I ve Seen Enough : Incrementally Improving Visualizations to Support Rapid Decision Making I ve Seen Enough : Increentally Iproving Visualizations to Support Rapid Decision Making Sajjadur Rahan Marya Aliakbarpour 2 Ha Kyung Kong Eric Blais 3 Karrie Karahalios,4 Aditya Paraeswaran Ronitt Rubinfield

More information

QUERY ROUTING OPTIMIZATION IN SENSOR COMMUNICATION NETWORKS

QUERY ROUTING OPTIMIZATION IN SENSOR COMMUNICATION NETWORKS QUERY ROUTING OPTIMIZATION IN SENSOR COMMUNICATION NETWORKS Guofei Jiang and George Cybenko Institute for Security Technology Studies and Thayer School of Engineering Dartouth College, Hanover NH 03755

More information

Data Caching for Enhancing Anonymity

Data Caching for Enhancing Anonymity Data Caching for Enhancing Anonyity Rajiv Bagai and Bin Tang Departent of Electrical Engineering and Coputer Science Wichita State University Wichita, Kansas 67260 0083, USA Eail: {rajiv.bagai, bin.tang}@wichita.edu

More information

Brian Noguchi CS 229 (Fall 05) Project Final Writeup A Hierarchical Application of ICA-based Feature Extraction to Image Classification Brian Noguchi

Brian Noguchi CS 229 (Fall 05) Project Final Writeup A Hierarchical Application of ICA-based Feature Extraction to Image Classification Brian Noguchi A Hierarchical Application of ICA-based Feature Etraction to Iage Classification Introduction Iage classification poses one of the greatest challenges in the achine vision and achine learning counities.

More information

Efficient Learning of Generalized Linear and Single Index Models with Isotonic Regression

Efficient Learning of Generalized Linear and Single Index Models with Isotonic Regression Efficient Learning of Generalized Linear and Single Index Models with Isotonic Regression Sha M. Kakade Microsoft Research and Wharton, U Penn skakade@icrosoft.co Varun Kanade SEAS, Harvard University

More information

SYMBOLIC FEATURES IN NEURAL NETWORKS

SYMBOLIC FEATURES IN NEURAL NETWORKS SYMBOLIC FEATURES IN NEURAL NETWORKS Włodzisław Duch, Karol Grudziński and Grzegorz Stawski 1 Department of Computer Methods, Nicolaus Copernicus University ul. Grudziadzka 5, 87-100 Toruń, Poland Abstract:

More information

Feature Based Registration for Panoramic Image Generation

Feature Based Registration for Panoramic Image Generation IJCSI International Journal of Coputer Science Issues, Vol. 10, Issue 6, No, Noveber 013 www.ijcsi.org 13 Feature Based Registration for Panoraic Iage Generation Kawther Abbas Sallal 1, Abdul-Mone Saleh

More information

Joint Measurement- and Traffic Descriptor-based Admission Control at Real-Time Traffic Aggregation Points

Joint Measurement- and Traffic Descriptor-based Admission Control at Real-Time Traffic Aggregation Points Joint Measureent- and Traffic Descriptor-based Adission Control at Real-Tie Traffic Aggregation Points Stylianos Georgoulas, Panos Triintzios and George Pavlou Centre for Counication Systes Research, University

More information

A High-Speed VLSI Fuzzy Inference Processor for Trapezoid-Shaped Membership Functions *

A High-Speed VLSI Fuzzy Inference Processor for Trapezoid-Shaped Membership Functions * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 21, 607-626 (2005) A High-Speed VLSI Fuzzy Inference Processor for Trapezoid-Shaped Mebership Functions * SHIH-HSU HUANG AND JIAN-YUAN LAI + Departent of

More information

Generating Mechanisms for Evolving Software Mirror Graph

Generating Mechanisms for Evolving Software Mirror Graph Journal of Modern Physics, 2012, 3, 1050-1059 http://dx.doi.org/10.4236/jp.2012.39139 Published Online Septeber 2012 (http://www.scirp.org/journal/jp) Generating Mechaniss for Evolving Software Mirror

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 10, October ISSN

International Journal of Scientific & Engineering Research, Volume 4, Issue 10, October ISSN International Journal of Scientific & Engineering Research, Volue 4, Issue 0, October-203 483 Design an Encoding Technique Using Forbidden Transition free Algorith to Reduce Cross-Talk for On-Chip VLSI

More information

Weeks 1 3 Weeks 4 6 Unit/Topic Number and Operations in Base 10

Weeks 1 3 Weeks 4 6 Unit/Topic Number and Operations in Base 10 Weeks 1 3 Weeks 4 6 Unit/Topic Nuber and Operations in Base 10 FLOYD COUNTY SCHOOLS CURRICULUM RESOURCES Building a Better Future for Every Child - Every Day! Suer 2013 Subject Content: Math Grade 3rd

More information

Affine Invariant Texture Analysis Based on Structural Properties 1

Affine Invariant Texture Analysis Based on Structural Properties 1 ACCV: The 5th Asian Conference on Coputer Vision, --5 January, Melbourne, Australia Affine Invariant Texture Analysis Based on tructural Properties Jianguo Zhang, Tieniu Tan National Laboratory of Pattern

More information

Instance Pruning Techniques

Instance Pruning Techniques In Fisher, D., ed., Machine Learning: Proceedings of the Fourteenth International Conference, Morgan Kaufmann Publishers, San Francisco, CA, pp. 404-411, 1997. Instance Pruning Techniques D. Randall Wilson,

More information

A Low-Cost Multi-Failure Resilient Replication Scheme for High Data Availability in Cloud Storage

A Low-Cost Multi-Failure Resilient Replication Scheme for High Data Availability in Cloud Storage 216 IEEE 23rd International Conference on High Perforance Coputing A Low-Cost Multi-Failure Resilient Replication Schee for High Data Availability in Cloud Storage Jinwei Liu* and Haiying Shen *Departent

More information

EE 364B Convex Optimization An ADMM Solution to the Sparse Coding Problem. Sonia Bhaskar, Will Zou Final Project Spring 2011

EE 364B Convex Optimization An ADMM Solution to the Sparse Coding Problem. Sonia Bhaskar, Will Zou Final Project Spring 2011 EE 364B Convex Optiization An ADMM Solution to the Sparse Coding Proble Sonia Bhaskar, Will Zou Final Project Spring 20 I. INTRODUCTION For our project, we apply the ethod of the alternating direction

More information

λ-harmonious Graph Colouring Lauren DeDieu

λ-harmonious Graph Colouring Lauren DeDieu λ-haronious Graph Colouring Lauren DeDieu June 12, 2012 ABSTRACT In 198, Hopcroft and Krishnaoorthy defined a new type of graph colouring called haronious colouring. Haronious colouring is a proper vertex

More information

A Learning Framework for Nearest Neighbor Search

A Learning Framework for Nearest Neighbor Search A Learning Fraework for Nearest Neighbor Search Lawrence Cayton Departent of Coputer Science University of California, San Diego lcayton@cs.ucsd.edu Sanjoy Dasgupta Departent of Coputer Science University

More information

NON-RIGID OBJECT TRACKING: A PREDICTIVE VECTORIAL MODEL APPROACH

NON-RIGID OBJECT TRACKING: A PREDICTIVE VECTORIAL MODEL APPROACH NON-RIGID OBJECT TRACKING: A PREDICTIVE VECTORIAL MODEL APPROACH V. Atienza; J.M. Valiente and G. Andreu Departaento de Ingeniería de Sisteas, Coputadores y Autoática Universidad Politécnica de Valencia.

More information

Different criteria of dynamic routing

Different criteria of dynamic routing Procedia Coputer Science Volue 66, 2015, Pages 166 173 YSC 2015. 4th International Young Scientists Conference on Coputational Science Different criteria of dynaic routing Kurochkin 1*, Grinberg 1 1 Kharkevich

More information

A Trajectory Splitting Model for Efficient Spatio-Temporal Indexing

A Trajectory Splitting Model for Efficient Spatio-Temporal Indexing A Trajectory Splitting Model for Efficient Spatio-Teporal Indexing Slobodan Rasetic Jörg Sander Jaes Elding Mario A. Nasciento Departent of Coputing Science University of Alberta Edonton, Alberta, Canada

More information

Distributed Multicast Tree Construction in Wireless Sensor Networks

Distributed Multicast Tree Construction in Wireless Sensor Networks Distributed Multicast Tree Construction in Wireless Sensor Networks Hongyu Gong, Luoyi Fu, Xinzhe Fu, Lutian Zhao 3, Kainan Wang, and Xinbing Wang Dept. of Electronic Engineering, Shanghai Jiao Tong University,

More information

3D Building Detection and Reconstruction from Aerial Images Using Perceptual Organization and Fast Graph Search

3D Building Detection and Reconstruction from Aerial Images Using Perceptual Organization and Fast Graph Search 436 Journal of Electrical Engineering & Technology, Vol. 3, No. 3, pp. 436~443, 008 3D Building Detection and Reconstruction fro Aerial Iages Using Perceptual Organization and Fast Graph Search Dong-Min

More information

THE rounding operation is performed in almost all arithmetic

THE rounding operation is performed in almost all arithmetic This is the author's version of an article that has been published in this journal. Changes were ade to this version by the publisher prior to publication. The final version of record is available at http://dx.doi.org/.9/tvlsi.5.538

More information

The Boundary Between Privacy and Utility in Data Publishing

The Boundary Between Privacy and Utility in Data Publishing The Boundary Between Privacy and Utility in Data Publishing Vibhor Rastogi Dan Suciu Sungho Hong ABSTRACT We consider the privacy proble in data publishing: given a database instance containing sensitive

More information

Set Theoretic Estimation for Problems in Subtractive Color

Set Theoretic Estimation for Problems in Subtractive Color Set Theoretic Estiation for Probles in Subtractive Color Gaurav Shara Digital Iaging Technology Center, Xerox Corporation, MS0128-27E, 800 Phillips Rd, Webster, NY 14580 Received 25 March 1999; accepted

More information

Design and Implementation of Business Logic Layer Object-Oriented Design versus Relational Design

Design and Implementation of Business Logic Layer Object-Oriented Design versus Relational Design Design and Ipleentation of Business Logic Layer Object-Oriented Design versus Relational Design Ali Alharthy Faculty of Engineering and IT University of Technology, Sydney Sydney, Australia Eail: Ali.a.alharthy@student.uts.edu.au

More information

Research on a Kind of QoS-Sensitive Semantic Web Services Composition Method Based on Genetic Algorithm

Research on a Kind of QoS-Sensitive Semantic Web Services Composition Method Based on Genetic Algorithm roceedings of the 7th International Conference on Innovation & Manageent 893 Research on a Kind of QoS-Sensitive Seantic Web Services Coposition Method Based on Genetic Algorith Cao Hongjiang, Nie Guihua,

More information

2013 IEEE Conference on Computer Vision and Pattern Recognition. Compressed Hashing

2013 IEEE Conference on Computer Vision and Pattern Recognition. Compressed Hashing 203 IEEE Conference on Coputer Vision and Pattern Recognition Copressed Hashing Yue Lin Rong Jin Deng Cai Shuicheng Yan Xuelong Li State Key Lab of CAD&CG, College of Coputer Science, Zhejiang University,

More information

OPTIMAL COMPLEX SERVICES COMPOSITION IN SOA SYSTEMS

OPTIMAL COMPLEX SERVICES COMPOSITION IN SOA SYSTEMS Key words SOA, optial, coplex service, coposition, Quality of Service Piotr RYGIELSKI*, Paweł ŚWIĄTEK* OPTIMAL COMPLEX SERVICES COMPOSITION IN SOA SYSTEMS One of the ost iportant tasks in service oriented

More information

Deterministic Voting in Distributed Systems Using Error-Correcting Codes

Deterministic Voting in Distributed Systems Using Error-Correcting Codes IEEE TRASACTIOS O PARALLEL AD DISTRIBUTED SYSTEMS, VOL. 9, O. 8, AUGUST 1998 813 Deterinistic Voting in Distributed Systes Using Error-Correcting Codes Lihao Xu and Jehoshua Bruck, Senior Meber, IEEE Abstract

More information

Region Segmentation Region Segmentation

Region Segmentation Region Segmentation /7/ egion Segentation Lecture-7 Chapter 3, Fundaentals of Coputer Vision Alper Yilaz,, Mubarak Shah, Fall UCF egion Segentation Alper Yilaz,, Mubarak Shah, Fall UCF /7/ Laer epresentation Applications

More information

Knowledge Discovery Applied to Agriculture Economy Planning

Knowledge Discovery Applied to Agriculture Economy Planning Knowledge Discovery Applied to Agriculture Econoy Planning Bing-ru Yang and Shao-un Huang Inforation Engineering School University of Science and Technology, Beiing, China, 100083 Eail: bingru.yang@b.col.co.cn

More information

Colorado School of Mines. Computer Vision. Professor William Hoff Dept of Electrical Engineering &Computer Science.

Colorado School of Mines. Computer Vision. Professor William Hoff Dept of Electrical Engineering &Computer Science. Professor Willia Hoff Dept of Electrical Engineering &Coputer Science http://inside.ines.edu/~whoff/ 1 Caera Calibration 2 Caera Calibration Needed for ost achine vision and photograetry tasks (object

More information

A Learning Framework for Nearest Neighbor Search

A Learning Framework for Nearest Neighbor Search A Learning Fraework for Nearest Neighbor Search Lawrence Cayton Departent of Coputer Science University of California, San Diego lcayton@cs.ucsd.edu Sanjoy Dasgupta Departent of Coputer Science University

More information

Galois Homomorphic Fractal Approach for the Recognition of Emotion

Galois Homomorphic Fractal Approach for the Recognition of Emotion Galois Hooorphic Fractal Approach for the Recognition of Eotion T. G. Grace Elizabeth Rani 1, G. Jayalalitha 1 Research Scholar, Bharathiar University, India, Associate Professor, Departent of Matheatics,

More information

An Efficient Approach for Content Delivery in Overlay Networks

An Efficient Approach for Content Delivery in Overlay Networks An Efficient Approach for Content Delivery in Overlay Networks Mohaad Malli, Chadi Barakat, Walid Dabbous Projet Planète, INRIA-Sophia Antipolis, France E-ail:{alli, cbarakat, dabbous}@sophia.inria.fr

More information

Verifying the structure and behavior in UML/OCL models using satisfiability solvers

Verifying the structure and behavior in UML/OCL models using satisfiability solvers IET Cyber-Physical Systes: Theory & Applications Review Article Verifying the structure and behavior in UML/OCL odels using satisfiability solvers ISSN 2398-3396 Received on 20th October 2016 Revised on

More information

Collection Selection Based on Historical Performance for Efficient Processing

Collection Selection Based on Historical Performance for Efficient Processing Collection Selection Based on Historical Perforance for Efficient Processing Christopher T. Fallen and Gregory B. Newby Arctic Region Supercoputing Center University of Alaska Fairbanks Fairbanks, Alaska

More information

Feature Selection to Relate Words and Images

Feature Selection to Relate Words and Images The Open Inforation Systes Journal, 2009, 3, 9-13 9 Feature Selection to Relate Words and Iages Wei-Chao Lin 1 and Chih-Fong Tsai*,2 Open Access 1 Departent of Coputing, Engineering and Technology, University

More information

Comparative Evaluation of Color-Based Video Signatures in the Presence of Various Distortion Types

Comparative Evaluation of Color-Based Video Signatures in the Presence of Various Distortion Types Coparative Evaluation of Color-Based Video Signatures in the Presence of Various Distortion Types Aritz Sánchez de la Fuente, Patrick Ndjiki-Nya, Karsten Sühring, Tobias Hinz, Karsten üller, and Thoas

More information

An Ad Hoc Adaptive Hashing Technique for Non-Uniformly Distributed IP Address Lookup in Computer Networks

An Ad Hoc Adaptive Hashing Technique for Non-Uniformly Distributed IP Address Lookup in Computer Networks An Ad Hoc Adaptive Hashing Technique for Non-Uniforly Distributed IP Address Lookup in Coputer Networks Christopher Martinez Departent of Electrical and Coputer Engineering The University of Texas at San

More information

ELEN : Project Progress Report. Second Order Delay Computation for RC networks with Non-Tree Topology

ELEN : Project Progress Report. Second Order Delay Computation for RC networks with Non-Tree Topology ELEN 689-603: Project Progress eport Second Order Delay Coputation for C networks wi Non-Tree Topology ajeshwary Tayade 000 07 573 //003 PDF created wi pdffactory trial version www.pdffactory.co : Introduction

More information

Investigation of The Time-Offset-Based QoS Support with Optical Burst Switching in WDM Networks

Investigation of The Time-Offset-Based QoS Support with Optical Burst Switching in WDM Networks Investigation of The Tie-Offset-Based QoS Support with Optical Burst Switching in WDM Networks Pingyi Fan, Chongxi Feng,Yichao Wang, Ning Ge State Key Laboratory on Microwave and Digital Counications,

More information

Planet Scale Software Updates

Planet Scale Software Updates Planet Scale Software Updates Christos Gkantsidis 1, Thoas Karagiannis 2, Pablo Rodriguez 1, and Milan Vojnović 1 1 Microsoft Research 2 UC Riverside Cabridge, UK Riverside, CA, USA {chrisgk,pablo,ilanv}@icrosoft.co

More information

Structural Balance in Networks. An Optimizational Approach. Andrej Mrvar. Faculty of Social Sciences. University of Ljubljana. Kardeljeva pl.

Structural Balance in Networks. An Optimizational Approach. Andrej Mrvar. Faculty of Social Sciences. University of Ljubljana. Kardeljeva pl. Structural Balance in Networks An Optiizational Approach Andrej Mrvar Faculty of Social Sciences University of Ljubljana Kardeljeva pl. 5 61109 Ljubljana March 23 1994 Contents 1 Balanced and clusterable

More information

RECONFIGURABLE AND MODULAR BASED SYNTHESIS OF CYCLIC DSP DATA FLOW GRAPHS

RECONFIGURABLE AND MODULAR BASED SYNTHESIS OF CYCLIC DSP DATA FLOW GRAPHS RECONFIGURABLE AND MODULAR BASED SYNTHESIS OF CYCLIC DSP DATA FLOW GRAPHS AWNI ITRADAT Assistant Professor, Departent of Coputer Engineering, Faculty of Engineering, Hasheite University, P.O. Box 15459,

More information

Fair Energy-Efficient Sensing Task Allocation in Participatory Sensing with Smartphones

Fair Energy-Efficient Sensing Task Allocation in Participatory Sensing with Smartphones Advance Access publication on 24 February 2017 The British Coputer Society 2017. All rights reserved. For Perissions, please eail: journals.perissions@oup.co doi:10.1093/cojnl/bxx015 Fair Energy-Efficient

More information

2 P. S. BRADLEY & O. L. MANGASARIAN 2. The k-plane Clustering (kpc) Algorith We consider a set A of points in the n-diensional real space R n represen

2 P. S. BRADLEY & O. L. MANGASARIAN 2. The k-plane Clustering (kpc) Algorith We consider a set A of points in the n-diensional real space R n represen Journal of Global Optiization,, {9 (999) c 999 Kluwer Acadeic Publishers, Boston. Manufactured in The Netherlands. k-plane Clustering P. S. BRADLEY & O. L. MANGASARIAN bradley@icrosoft.co, olvi@cs.wisc.edu

More information

Carving Differential Unit Test Cases from System Test Cases

Carving Differential Unit Test Cases from System Test Cases Carving Differential Unit Test Cases fro Syste Test Cases Sebastian Elbau, Hui Nee Chin, Matthew B. Dwyer, Jonathan Dokulil Departent of Coputer Science and Engineering University of Nebraska - Lincoln

More information

Medical Biophysics 302E/335G/ st1-07 page 1

Medical Biophysics 302E/335G/ st1-07 page 1 Medical Biophysics 302E/335G/500 20070109 st1-07 page 1 STEREOLOGICAL METHODS - CONCEPTS Upon copletion of this lesson, the student should be able to: -define the ter stereology -distinguish between quantitative

More information

A simplified approach to merging partial plane images

A simplified approach to merging partial plane images A siplified approach to erging partial plane iages Mária Kruláková 1 This paper introduces a ethod of iage recognition based on the gradual generating and analysis of data structure consisting of the 2D

More information