Online Bagging and Boosting

Size: px
Start display at page:

Download "Online Bagging and Boosting"

Transcription

1 Abstract Bagging and boosting are two of the ost well-known enseble learning ethods due to their theoretical perforance guarantees and strong experiental results. However, these algoriths have been used ainly in batch ode, i.e., they require the entire training set to be available at once and, in soe cases, require rando access to the data. In this paper, we present online versions of bagging and boosting that require only one pass through the training data. We build on previously presented work by presenting soe theoretical results. We also copare the online and batch algoriths experientally in ters of accuracy and running tie. Keywords: Bagging, boosting, enseble learning, online learning. 1 Introduction Traditional supervised learning algoriths generate a single odel such as a Naïve Bayes classifier or ultilayer perceptron () and use it to classify exaples. 1 Enseble learning algoriths cobine the predictions of ultiple base odels, each of which is learned using a traditional algorith. Bagging [3] and Boosting [4] are well-known enseble learning algoriths that have been shown to be very effective in iproving generalization perforance copared to the individual base odels. Theoretical analysis of boosting's perforance supports these results [4]. In previous work [1][2], we developed online versions of bagging and boosting. Online learning algoriths process each training exaple once ``on arrival'' without the need for storage and reprocessing, and aintain a current odel that reflects all the training exaples seen so far. Such algoriths have advantages over typical batch algoriths in situations where data arrive continuously. They are also useful with very large data sets on secondary storage, for which the ultiple passes through the training set required by ost batch algoriths are prohibitively expensive. In Sections 2 and 3, we describe our online bagging and online boosting algoriths, respectively. In particular, we describe how we irror the ethods that the batch bagging and boosting algoriths use to generate Online Bagging and Boosting 1 In this paper, we only deal with the classification proble. Nikunj C. Oza Intelligent Systes Division NASA Aes Research Center Mail Stop Moffett Field, CA, USA oza@eail.arc.nasa.gov distinct base odels, which are known to help enseble perforance. In our previous work, we also discussed soe preliinary theoretical results and soe epirical coparisons of the classification accuracies of our online algoriths and the corresponding batch algoriths on any datasets of varying size. In Sections 2 and 3, we give a brief description of soe additional theoretical results. In Section 4, we review the experiental results in our previous work deonstrating the perforance of our online algoriths relative to their batch counterparts. In this paper, we expand upon these results by coparing and studying their running ties. We run our online bagging and boosting algoriths with two different base odels: Naïve Bayes classifiers and s. We use a lossless online learning algorith for Naïve Bayes classifiers. For a given training set, a lossless online learning algorith returns a odel identical to that returned by the corresponding batch algorith. For s, we are forced to use a lossy online learning algorith. In particular, we do not allow the s backpropagation algorith to cycle through the training set in ultiple epochs the way backpropagation is norally allowed to do. Overall, our online bagging and boosting algoriths perfor coparably to their batch counterparts in ters of classification accuracy when using Naïve Bayes base odels. The loss experienced by online s relative to batch s leads to a significant loss for online bagging and boosting relative to the batch versions. Online bagging often does iprove significantly upon online s; however, online boosting never perfored significantly better than single online s. We also copare the running ties of the batch and online algoriths. If the online base odel learning algorith is not significantly slower than the corresponding batch algorith, then the bagging and online bagging algoriths do not have a large difference in their running tie in our tests. On the other hand, our online boosting algorith runs significantly faster than batch boosting. For exaple, on our largest dataset, batch boosting ran twice as long as online boosting to achieve coparable classification accuracy. 2 Online Bagging Given a training dataset T of size N, standard batch bagging creates M base odels. Each odel is trained by calling the batch learning algorith L b on a bootstrap saple of size N created by drawing rando saples with

2 replaceent fro the original training set. Figure 1 gives the pseudocode for bagging. Bagging(T,L b,m) For each { 1,2,K, M}, T = Saple_With_Replaceent(T, T ) h = L b ( T ) { } Return h 1,h 2,K,h M Figure 1: Bagging Algorith Each base odel's training set contains K copies of each of the original training exaples where ( ) = N k P K = k 1 k N 1 1 N N k which is the Binoial distribution. As N, the distribution of K tends to a Poisson(1) distribution: P(K = k) ~ exp( 1) /k!. As discussed in [1] [2], we can perfor bagging online as follows: as each training exaple d=(x,y) is presented to our algorith, for each base odel, choose the exaple K ~ Poisson(1) ties and update the base odel accordingly using the online base odel learning algorith L o (see Figure 2). New exaples are classified the sae way in online and batch bagging---by unweighted voting of the M base odels. OnlineBagging(h,L o,d) For each base odel h h, { 1,2,K,M}, Set k according to Poisson(1). Do k ties h = L o ( h,d). Figure 2: Online Bagging Algorith Online bagging is a good approxiation to batch bagging to the extent that their base odel learning algoriths produce siilar odels when trained with siilar distributions of training exaples. In past work [1][5], we proved that if the sae original training set is supplied to the two bagging algoriths, then the distributions over the training sets supplied to the base odels in batch and online bagging converge as the size of that original training set grows to infinity. We have also proven that the classifiers returned by bagging and online bagging converge to the sae classifier given the sae training set as the nuber of odels and training exaples tends to infinity under two conditions. The first is that the base odel learning algoriths return classifiers that converge toward the sae classifier as the nuber of training exaples grows. The second is that, given a fixed training set T, the online and batch base odel learning algoriths return the sae classifier for any nuber of copies of T that are presented to the learning algorith. For exaple, doubling the training set by repeating every exaple in T yields the sae classifier as T would yield. For exaple, this condition is true of decision trees and Naïve Bayes classifiers, but is not true of s, since doubling the training set effectively doubles the nuber of epochs in backpropagation training. More foral details are presented in [5]. 3 Online Boosting Our online boosting algorith is designed to correspond to the batch boosting algorith, AdaBoost.M1 [4] (the pseudocode is given in Figure 3). AdaBoost generates a sequence of base odels h 1,h 2,K,h M using weighted training sets (weighted by D 1,D 2,K,D M ) such that the training exaples isclassified by odel h 1 are given half the total weight when generating odel h and the correctly classified exaples are given the reaining half of the weight. When the base odel learning algorith cannot learn with weighted training sets, one can generate saples with replaceent according to D. AdaBoost( {( x 1,y 1 ),( x 2,y 2 ),K,( x N,y N )},L b,m) Initialize D 1 ( n) =1/N for all n { 1,2,K,N}. For all { 1,2,K,M}, h = L b ({( x 1,y 1 ),( x 2,y 2 ),K,( x N,y N )},D ). N ε = D ( n)i( h ( x n ) y n ). n=1 If ε 1/2 then set M = -1 and abort loop. For all n { 1,2,K,N}, D +1 ( n) = D ( n) Return h fin ( x) = argax y Y M = ε 1 2ε ( ) if h x ( n) = y n log 1 ε I h ε Figure 3: AdaBoost algorith otherwise ( ( x n ) = y n ) Our online boosting algorith (Figure 4) siulates sapling with replaceent using the Poisson distribution just like online bagging does. The only difference is that

3 when a base odel isclassifies a training exaple, the Poisson distribution paraeter λ associated with that exaple is increased when presented to the next base odel; otherwise it is decreased. Just as in AdaBoost, our algorith gives the exaples isclassified by one stage half the total weight in the next stage; the correctly classified exaples are given the reaining half of the weight. This is done by keeping track of the total weights of each base odel s correctly classified and isclassified training exaples ( λ sc and λ sw, respectively) and using these to update each base odel s error ε. At this point, a training exaple s weight is updated the sae way as in AdaBoost. One area of concern is that, in AdaBoost, an exaple's weight is adjusted based on the perforance of a base odel on the entire training set while in online boosting, the weight adjustent is based on the base odel's perforance only on the exaples seen earlier. To see why this ay be an issue, consider running AdaBoost and online boosting on a training set of size In AdaBoost, the first base odel h 1 is trained on all exaples before being tested on, say, the tenth training exaple. In online boosting, h 1 is trained on only the first ten exaples before being tested on the tenth exaple. Clearly, at the oent when the tenth training exaple is being tested, we ay expect the two h 1 's to be very different; therefore, h 2 in AdaBoost and h 2 in online boosting ay be presented with different weights for the tenth training exaple. This ay, in turn, lead to different weights for the tenth exaple when generating h 3 in each algorith, and so on. Intuitively, we want online boosting to get a good ix of training exaples so that the base odels and their noralized errors in online boosting quickly converge to what they are in AdaBoost. The ore rapidly this convergence occurs, the ore siilar the training exaples' weight adjustents will be and the ore siilar their perforances will be. We have proven [5] that for Naive Bayes base odels, the online and batch boosting algoriths converge to the sae classifier as the nuber of odels and training exaples tends to infinity. 4 Experiental Results In this section, we discuss results on several different datasets, whose naes and nubers of training exaples, test exaples, inputs, and classes are given in Table 1. The Soybean-Large and Census Incoe datasets coe with fixed training and test sets, which we use in our experients. For the reaining datasets, we give the training and test set sizes that result fro using 5-fold cross-validation. We discuss the results on soe sall datasets to show that the online algoriths can often achieve perforance coparable to batch algoriths even when given a sall nuber of data points. We discuss results on several larger datasets in ore detail since online algoriths are ost useful for such datasets. All but three of the datasets were drawn fro the UCI KDD repository [6]. The reaining three are synthetic datasets that were chosen because the perforance of a single Naive Bayes classifier varies significantly across these three datasets. These datasets allow us to copare the perforances of the online and batch enseble algoriths on datasets of varying difficulty. Table 1: The datasets used in our experients. Data Set Train Test Input Class Set Set Prooters Balance Soybean-Large Breast Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Accuracy For both bagging and boosting, we present results using two different base odel types : Naive Bayes classifiers and ultilayer perceptrons (s). Both bagging algoriths generated 100 base odels. Both boosting algoriths were allowed to generate up to 100 base odels. All the results shown are based on 10 runs of 5-fold cross validation (except on the Soybean-Large and Census Incoe, where we used the supplied training and test sets). All the online algoriths were run five ties for every one tie the batch algorith was run, with different rando orders of the training set. This was done to account for the effect that the order of the training exaples can have on the perforance of an online learning algorith. Tables 2-5 show the results of online bagging and boosting copared to their batch counterparts and single base odels using Naive Bayes classifiers and s. The online was trained by using backpropagation to update the with each training exaple ten ties upon arrival; however, the algorith only ran through the entire training set once in the order in which it was presented. The batch was trained by using backpropagation to update the in ten epochs (ten cycles through the entire training set). All coparisons between algoriths were ade using a paired t-test (α=0.05). Table 2 shows the results of running bagging with Naive Bayes classifiers. Entries in boldface/italics indicate that the enseble algorith perfored significantly better/worse than a single Naive Bayes classifier. The bagging algoriths perfored coparably to each other and ostly perfored coparably to the batch Naive Bayes algorith. This is expected due to the stability of Naive

4 Bayes classifiers [3]. That is, the Naïve Bayes classifiers in a bagged enseble tend to classify new exaples the sae way (we obtained at least 90% agreeent on all test exaples) in spite of the differences in the training sets. Initial conditions : For all { 1,2,K, M}, λ sc = 0,λ sw = 0. OnlineBoosting(h,L o,(x,y)) Set λ =1. For each base odel h h, { 1,2,K,M}, Set k according to Poisson(λ). Do k ties h = L o ( h,(x,y)). If y = h ( x) λ sc λ sc + λ ε λ sw λ sc sw + λ 1 λ λ 2( 1- ε ) else λ sw λ sw + λ ε λ sw λ sc sw + λ λ λ 1 2ε end To classify a new exaple with input x, return : h fin M ( x) = argax y Y log 1 ε I( h ( x) = y). =1 ε Figure 4: Online Boosting Algorith Table 3 shows the results of running the boosting algoriths with Naive Bayes classifiers. In the «Online Boosting» colun, any entry with a + or - after it indicates that online boosting perfored significantly better or worse than batch boosting, respectively. Batch boosting significantly outperfors online boosting in any cases--- especially the saller datasets. However, the perforances of boosting and online boosting relative to a single Naive Bayes classifier agree to a rearkable extent. That is, when one of the is significantly better or worse than a single Naive Bayes classifier, the other tends to be the sae way. Table 2: Bagging vs. Online Bagging, Naive Bayes Dataset Naive Bayes Bagging Online Bagging Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Table 3: Boosting vs. Online Boosting, Naive Bayes Dataset Naive Bayes Boosting Online Boosting Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Table 4 shows the results of running bagging with s. The entries for bagging shown in boldface/italics indicate that bagging significantly outperfored/underperfored relative to the batch. The entries for online bagging shown in boldface/italics indicate that online bagging significantly outperfored/underperfored relative to the online. The entries for online bagging with a - after the indicate ties when it perfored significantly worse than batch bagging. The online always perfored significantly worse than the batch ; therefore, it is not surprising that online bagging often perfored significantly worse than batch bagging. However, online bagging did significantly outperfor online s ost of the tie. Table 5 gives the results of running boosting with s. Entries in the online and boosting colun that are given in boldface/italics indicate that it significantly outperfored/underperfored relative to batch s. Entries in the online boosting colun given in boldface/italics indicate ties when it significantly outperfored/underperfored relative to the online. Entries with a - after the indicate ties when online boosting perfored significantly worse than batch

5 boosting. Clearly, the significant loss in using an online instead of a batch has rendered the online boosting algorith significantly worse than batch boosting. Table 4: Bagging vs. Online Bagging, s Dataset Online Bagging Online Bagging Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Table 5: Boosting vs. Online Boosting, s Dataset Online Boosting Online Boosting Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Running Tie In this section, we report and analyze the running ties of the batch and online algoriths that we experiented with. There are several factors that affect the difference between the running ties of an online learning algorith and its batch counterpart. Online learning algoriths ain advantage over batch learning algoriths is the ability to increentally update their odels with new training exaples---batch algoriths often have to throw away the previously learned odel and learn a new odel after adding the new exaples to the training set. This is clearly very wasteful coputationally and is ipossible when there are ore data than can be stored. Additionally, batch bagging ust cycle through the dataset at least MT ties, where M is the nuber of base odels and T is the nuber of ties the base odel learning algorith ust cycle through the training set to construct one odel. Therefore, each training exaple is exained MT ties. On the other hand, online bagging only needs to sweep through the training set once, which eans that each training exaple is exained only M ties (once to update each base odel s paraeters). Online algoriths do not require storing the entire training set. However, for a fixed training set (i.e., one to which new training exaples are not continually added), batch algoriths soeties run faster than the corresponding online algoriths. This is because batch algoriths can often set their odel paraeters once and for all by exaining the entire training set at once while online algoriths have to update their paraeters once per training exaple. Table 6: Running ties for Naive Bayes and Ensebles. Dataset Naive Bayes Bag Online Bag Boost Online Boost Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe The coparison between batch and online boosting has the additional factor of the nuber of base odels. Batch boosting, when called with the upper liit of M base odels, can choose to generate fewer odels---recall that if a odel s error is greater than 0.5, then boosting will discard that odel and return the enseble generated so far. Online boosting does not have this luxury because it does not know what the final error rates will be for each base odel. This difference can lead to lower training ties for batch boosting. However, batch boosting needs to cycle through the training set M(T+1) ties---each of the M base odels requires T cycles through the training set to learn the odel and one cycle to calculate the error on the

6 training set. Online boosting only requires one sweep through the training set. Table 7: Running ties for s and Bagging. Dataset Online Bag Online Bag Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Table 8: Running ties for and Boosting. Dataset Online Boost Online Boost Prooters Balance Breast Geran Car Chess Mushroo Nursery Connect Synthetic Synthetic Synthetic Census Incoe Table 6 shows the running ties for Naive Bayes as well as all the enseble learning algoriths using Naive Bayes classifiers as base odels. The running tie for online bagging is generally soewhat greater than for batch bagging. The total nuber of ties each training exaple is exained is the sae for both batch and online bagging with Naive Bayes classifiers. However, online bagging requires a greater nuber of procedure calls to the learning algorith (MT as opposed to M), which ay explain the running tie difference. On the other hand, online boosting has a clear running tie advantage over batch boosting. Online boosting s fewer sweeps through the dataset clearly outweigh any reduction in the nuber of base odels returned by batch boosting. Tables 7-8 give the running ties for s and the batch and online enseble algoriths. This tie, both online bagging and online boosting are faster than their batch counterparts. The batch algoriths are slowed down because each requires ten cycles through the dataset. 5 Conclusions In this paper, we discussed online versions of bagging and boosting and gave both theoretical and experiental evidence that they can perfor coparably to their batch counterparts while running uch faster. In this paper, we experiented only with batch datasets, i.e., one is not concerned with concept drift. Online algoriths are useful for batch datasets that cannot be loaded into eory in their entirety. We plan to experient with online doains---doains where data arrive continually and where a prediction ust be generated for each data point upon arrival. In these situations, the learner ay be given iediate feedback (such as a calendar assistant which ay suggest a eeting tie which the user can either select or change) or ay obtain feedback periodically. The tievarying nature of such datasets ake the ore difficult to deal with but ore needy of online enseble learning algoriths. References [1] Nikunj C. Oza and Stuart Russell, Online Bagging and Boosting, in Artificial Intelligence and Statistics 2001, Key West, FL, USA, pp January [2] Nikunj C. Oza and Stuart Russell, Experiental Coparisons of Online and Batch Versions of Bagging and Boosting, The Seventh ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, pp , August [3] Leo Breian, Bagging Predictors, Machine Learning, Vol. 24, No. 2, pp , [4] Yoav Freund and Robert Schapire, A Decision- Theoretic Generalization of On-line Learning and an Application to Boosting, Journal of Coputer Syste Sciences, Vol. 55, No. 1, pp , [5] Nikunj C. Oza, Online Enseble Learning, Ph.D. thesis, Departent of Electrical Engineering and Coputer Science, University of California, Berkeley, [6] Stephen D. Bay, The UCI KDD Archive, Departent of Inforation and Coputer Sciences, University of California, Irvine

Applying Multiple Neural Networks on Large Scale Data

Applying Multiple Neural Networks on Large Scale Data 0 International Conference on Inforation and Electronics Engineering IPCSIT vol6 (0) (0) IACSIT Press, Singapore Applying Multiple Neural Networks on Large Scale Data Kritsanatt Boonkiatpong and Sukree

More information

A Study Of Bagging And Boosting Approaches To Develop Meta-Classifier

A Study Of Bagging And Boosting Approaches To Develop Meta-Classifier A Study Of Bagging And Boosting Approaches To Develop Meta-Classifier G.T. Prasanna Kumari Associate Professor, Dept of Computer Science and Engineering, Gokula Krishna College of Engg, Sullurpet-524121,

More information

AUC Optimization vs. Error Rate Minimization

AUC Optimization vs. Error Rate Minimization AUC Optiization vs. Error Rate Miniization Corinna Cortes and Mehryar Mohri AT&T Labs Research 180 Park Avenue, Florha Park, NJ 0793, USA {corinna, ohri}@research.att.co Abstract The area under an ROC

More information

Software Quality Characteristics Tested For Mobile Application Development

Software Quality Characteristics Tested For Mobile Application Development Thesis no: MGSE-2015-02 Software Quality Characteristics Tested For Mobile Application Developent Literature Review and Epirical Survey WALEED ANWAR Faculty of Coputing Blekinge Institute of Technology

More information

An Innovate Dynamic Load Balancing Algorithm Based on Task

An Innovate Dynamic Load Balancing Algorithm Based on Task An Innovate Dynaic Load Balancing Algorith Based on Task Classification Hong-bin Wang,,a, Zhi-yi Fang, b, Guan-nan Qu,*,c, Xiao-dan Ren,d College of Coputer Science and Technology, Jilin University, Changchun

More information

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network

Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona Network 2013 European Control Conference (ECC) July 17-19, 2013, Zürich, Switzerland. Extended-Horizon Analysis of Pressure Sensitivities for Leak Detection in Water Distribution Networks: Application to the Barcelona

More information

Ensemble Data Mining Methods

Ensemble Data Mining Methods Ensemble Data Mining Methods Nikunj C. Oza, Ph.D., NASA Ames Research Center, USA INTRODUCTION Ensemble Data Mining Methods, also known as Committee Methods or Model Combiners, are machine learning methods

More information

Multi-Class Deep Boosting

Multi-Class Deep Boosting Multi-Class Deep Boosting Vitaly Kuznetsov Courant Institute 25 Mercer Street New York, NY 002 vitaly@cis.nyu.edu Mehryar Mohri Courant Institute & Google Research 25 Mercer Street New York, NY 002 ohri@cis.nyu.edu

More information

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing

Real Time Target Tracking with Binary Sensor Networks and Parallel Computing Real Tie Target Tracking with Binary Sensor Networks and Parallel Coputing Hong Lin, John Rushing, Sara J. Graves, Steve Tanner, and Evans Criswell Abstract A parallel real tie data fusion and target tracking

More information

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS

INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE SYSTEMS Artificial Intelligence Methods and Techniques for Business and Engineering Applications 210 INTEGRATED ENVIRONMENT FOR STORING AND HANDLING INFORMATION IN TASKS OF INDUCTIVE MODELLING FOR BUSINESS INTELLIGENCE

More information

Data Streaming Algorithms for Estimating Entropy of Network Traffic

Data Streaming Algorithms for Estimating Entropy of Network Traffic Data Streaing Algoriths for Estiating Entropy of Network Traffic Ashwin Lall University of Rochester Vyas Sekar Carnegie Mellon University Mitsunori Ogihara University of Rochester Jun (Ji) Xu Georgia

More information

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers

Performance Evaluation of Machine Learning Techniques using Software Cost Drivers Perforance Evaluation of Machine Learning Techniques using Software Cost Drivers Manas Gaur Departent of Coputer Engineering, Delhi Technological University Delhi, India ABSTRACT There is a treendous rise

More information

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking

An Integrated Approach for Monitoring Service Level Parameters of Software-Defined Networking International Journal of Future Generation Counication and Networking Vol. 8, No. 6 (15), pp. 197-4 http://d.doi.org/1.1457/ijfgcn.15.8.6.19 An Integrated Approach for Monitoring Service Level Paraeters

More information

Searching strategy for multi-target discovery in wireless networks

Searching strategy for multi-target discovery in wireless networks Searching strategy for ulti-target discovery in wireless networks Zhao Cheng, Wendi B. Heinzelan Departent of Electrical and Coputer Engineering University of Rochester Rochester, NY 467 (585) 75-{878,

More information

An Approach to Combating Free-riding in Peer-to-Peer Networks

An Approach to Combating Free-riding in Peer-to-Peer Networks An Approach to Cobating Free-riding in Peer-to-Peer Networks Victor Ponce, Jie Wu, and Xiuqi Li Departent of Coputer Science and Engineering Florida Atlantic University Boca Raton, FL 33431 April 7, 2008

More information

Machine Learning Applications in Grid Computing

Machine Learning Applications in Grid Computing Machine Learning Applications in Grid Coputing George Cybenko, Guofei Jiang and Daniel Bilar Thayer School of Engineering Dartouth College Hanover, NH 03755, USA gvc@dartouth.edu, guofei.jiang@dartouth.edu

More information

Use of extrapolation to forecast the working capital in the mechanical engineering companies

Use of extrapolation to forecast the working capital in the mechanical engineering companies ECONTECHMOD. AN INTERNATIONAL QUARTERLY JOURNAL 2014. Vol. 1. No. 1. 23 28 Use of extrapolation to forecast the working capital in the echanical engineering copanies A. Cherep, Y. Shvets Departent of finance

More information

Factored Models for Probabilistic Modal Logic

Factored Models for Probabilistic Modal Logic Proceedings of the Twenty-Third AAAI Conference on Artificial Intelligence (2008 Factored Models for Probabilistic Modal Logic Afsaneh Shirazi and Eyal Air Coputer Science Departent, University of Illinois

More information

ESTIMATING LIQUIDITY PREMIA IN THE SPANISH GOVERNMENT SECURITIES MARKET

ESTIMATING LIQUIDITY PREMIA IN THE SPANISH GOVERNMENT SECURITIES MARKET ESTIMATING LIQUIDITY PREMIA IN THE SPANISH GOVERNMENT SECURITIES MARKET Francisco Alonso, Roberto Blanco, Ana del Río and Alicia Sanchis Banco de España Banco de España Servicio de Estudios Docuento de

More information

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive

This paper studies a rental firm that offers reusable products to price- and quality-of-service sensitive MANUFACTURING & SERVICE OPERATIONS MANAGEMENT Vol., No. 3, Suer 28, pp. 429 447 issn 523-464 eissn 526-5498 8 3 429 infors doi.287/so.7.8 28 INFORMS INFORMS holds copyright to this article and distributed

More information

Fuzzy Sets in HR Management

Fuzzy Sets in HR Management Acta Polytechnica Hungarica Vol. 8, No. 3, 2011 Fuzzy Sets in HR Manageent Blanka Zeková AXIOM SW, s.r.o., 760 01 Zlín, Czech Republic blanka.zekova@sezna.cz Jana Talašová Faculty of Science, Palacký Univerzity,

More information

The AGA Evaluating Model of Customer Loyalty Based on E-commerce Environment

The AGA Evaluating Model of Customer Loyalty Based on E-commerce Environment 6 JOURNAL OF SOFTWARE, VOL. 4, NO. 3, MAY 009 The AGA Evaluating Model of Custoer Loyalty Based on E-coerce Environent Shaoei Yang Econoics and Manageent Departent, North China Electric Power University,

More information

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model

Evaluating Inventory Management Performance: a Preliminary Desk-Simulation Study Based on IOC Model Evaluating Inventory Manageent Perforance: a Preliinary Desk-Siulation Study Based on IOC Model Flora Bernardel, Roberto Panizzolo, and Davide Martinazzo Abstract The focus of this study is on preliinary

More information

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs

The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic Jobs Send Orders for Reprints to reprints@benthascience.ae 206 The Open Fuels & Energy Science Journal, 2015, 8, 206-210 Open Access The Research of Measuring Approach and Energy Efficiency for Hadoop Periodic

More information

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation

Media Adaptation Framework in Biofeedback System for Stroke Patient Rehabilitation Media Adaptation Fraework in Biofeedback Syste for Stroke Patient Rehabilitation Yinpeng Chen, Weiwei Xu, Hari Sundara, Thanassis Rikakis, Sheng-Min Liu Arts, Media and Engineering Progra Arizona State

More information

Comment on On Discriminative vs. Generative Classifiers: A Comparison of Logistic Regression and Naive Bayes

Comment on On Discriminative vs. Generative Classifiers: A Comparison of Logistic Regression and Naive Bayes Coent on On Discriinative vs. Generative Classifiers: A Coparison of Logistic Regression and Naive Bayes Jing-Hao Xue (jinghao@stats.gla.ac.uk) and D. Michael Titterington (ike@stats.gla.ac.uk) Departent

More information

6. Time (or Space) Series Analysis

6. Time (or Space) Series Analysis ATM 55 otes: Tie Series Analysis - Section 6a Page 8 6. Tie (or Space) Series Analysis In this chapter we will consider soe coon aspects of tie series analysis including autocorrelation, statistical prediction,

More information

International Journal of Management & Information Systems First Quarter 2012 Volume 16, Number 1

International Journal of Management & Information Systems First Quarter 2012 Volume 16, Number 1 International Journal of Manageent & Inforation Systes First Quarter 2012 Volue 16, Nuber 1 Proposal And Effectiveness Of A Highly Copelling Direct Mail Method - Establishent And Deployent Of PMOS-DM Hisatoshi

More information

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2

Exploiting Hardware Heterogeneity within the Same Instance Type of Amazon EC2 Exploiting Hardware Heterogeneity within the Sae Instance Type of Aazon EC2 Zhonghong Ou, Hao Zhuang, Jukka K. Nurinen, Antti Ylä-Jääski, Pan Hui Aalto University, Finland; Deutsch Teleko Laboratories,

More information

PREDICTION OF POSSIBLE CONGESTIONS IN SLA CREATION PROCESS

PREDICTION OF POSSIBLE CONGESTIONS IN SLA CREATION PROCESS PREDICTIO OF POSSIBLE COGESTIOS I SLA CREATIO PROCESS Srećko Krile University of Dubrovnik Departent of Electrical Engineering and Coputing Cira Carica 4, 20000 Dubrovnik, Croatia Tel +385 20 445-739,

More information

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy

Analyzing Spatiotemporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Vol. 9, No. 5 (2016), pp.303-312 http://dx.doi.org/10.14257/ijgdc.2016.9.5.26 Analyzing Spatioteporal Characteristics of Education Network Traffic with Flexible Multiscale Entropy Chen Yang, Renjie Zhou

More information

Pricing Asian Options using Monte Carlo Methods

Pricing Asian Options using Monte Carlo Methods U.U.D.M. Project Report 9:7 Pricing Asian Options using Monte Carlo Methods Hongbin Zhang Exaensarbete i ateatik, 3 hp Handledare och exainator: Johan Tysk Juni 9 Departent of Matheatics Uppsala University

More information

Work Travel and Decision Probling in the Network Marketing World

Work Travel and Decision Probling in the Network Marketing World TRB Paper No. 03-4348 WORK TRAVEL MODE CHOICE MODELING USING DATA MINING: DECISION TREES AND NEURAL NETWORKS Chi Xie Research Assistant Departent of Civil and Environental Engineering University of Massachusetts,

More information

Information Processing Letters

Information Processing Letters Inforation Processing Letters 111 2011) 178 183 Contents lists available at ScienceDirect Inforation Processing Letters www.elsevier.co/locate/ipl Offline file assignents for online load balancing Paul

More information

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks

Cooperative Caching for Adaptive Bit Rate Streaming in Content Delivery Networks Cooperative Caching for Adaptive Bit Rate Streaing in Content Delivery Networs Phuong Luu Vo Departent of Coputer Science and Engineering, International University - VNUHCM, Vietna vtlphuong@hciu.edu.vn

More information

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO

PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO Bulletin of the Transilvania University of Braşov Series I: Engineering Sciences Vol. 4 (53) No. - 0 PERFORMANCE METRICS FOR THE IT SERVICES PORTFOLIO V. CAZACU I. SZÉKELY F. SANDU 3 T. BĂLAN Abstract:

More information

Implementation of Active Queue Management in a Combined Input and Output Queued Switch

Implementation of Active Queue Management in a Combined Input and Output Queued Switch pleentation of Active Queue Manageent in a obined nput and Output Queued Switch Bartek Wydrowski and Moshe Zukeran AR Special Research entre for Ultra-Broadband nforation Networks, EEE Departent, The University

More information

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS

CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS 641 CRM FACTORS ASSESSMENT USING ANALYTIC HIERARCHY PROCESS Marketa Zajarosova 1* *Ph.D. VSB - Technical University of Ostrava, THE CZECH REPUBLIC arketa.zajarosova@vsb.cz Abstract Custoer relationship

More information

Energy Proportionality for Disk Storage Using Replication

Energy Proportionality for Disk Storage Using Replication Energy Proportionality for Disk Storage Using Replication Jinoh Ki and Doron Rote Lawrence Berkeley National Laboratory University of California, Berkeley, CA 94720 {jinohki,d rote}@lbl.gov Abstract Energy

More information

Data Set Generation for Rectangular Placement Problems

Data Set Generation for Rectangular Placement Problems Data Set Generation for Rectangular Placeent Probles Christine L. Valenzuela (Muford) Pearl Y. Wang School of Coputer Science & Inforatics Departent of Coputer Science MS 4A5 Cardiff University George

More information

Quality evaluation of the model-based forecasts of implied volatility index

Quality evaluation of the model-based forecasts of implied volatility index Quality evaluation of the odel-based forecasts of iplied volatility index Katarzyna Łęczycka 1 Abstract Influence of volatility on financial arket forecasts is very high. It appears as a specific factor

More information

arxiv:0805.1434v1 [math.pr] 9 May 2008

arxiv:0805.1434v1 [math.pr] 9 May 2008 Degree-distribution stability of scale-free networs Zhenting Hou, Xiangxing Kong, Dinghua Shi,2, and Guanrong Chen 3 School of Matheatics, Central South University, Changsha 40083, China 2 Departent of

More information

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises

Research Article Performance Evaluation of Human Resource Outsourcing in Food Processing Enterprises Advance Journal of Food Science and Technology 9(2): 964-969, 205 ISSN: 2042-4868; e-issn: 2042-4876 205 Maxwell Scientific Publication Corp. Subitted: August 0, 205 Accepted: Septeber 3, 205 Published:

More information

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism

The Benefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelism The enefit of SMT in the Multi-Core Era: Flexibility towards Degrees of Thread-Level Parallelis Stijn Eyeran Lieven Eeckhout Ghent University, elgiu Stijn.Eyeran@elis.UGent.be, Lieven.Eeckhout@elis.UGent.be

More information

How To Get A Loan From A Bank For Free

How To Get A Loan From A Bank For Free Finance 111 Finance We have to work with oney every day. While balancing your checkbook or calculating your onthly expenditures on espresso requires only arithetic, when we start saving, planning for retireent,

More information

Modeling operational risk data reported above a time-varying threshold

Modeling operational risk data reported above a time-varying threshold Modeling operational risk data reported above a tie-varying threshold Pavel V. Shevchenko CSIRO Matheatical and Inforation Sciences, Sydney, Locked bag 7, North Ryde, NSW, 670, Australia. e-ail: Pavel.Shevchenko@csiro.au

More information

AutoHelp. An 'Intelligent' Case-Based Help Desk Providing. Web-Based Support for EOSDIS Customers. A Concept and Proof-of-Concept Implementation

AutoHelp. An 'Intelligent' Case-Based Help Desk Providing. Web-Based Support for EOSDIS Customers. A Concept and Proof-of-Concept Implementation //j yd xd/_ ' Year One Report ":,/_i',:?,2... i" _.,.j- _,._".;-/._. ","/ AutoHelp An 'Intelligent' Case-Based Help Desk Providing Web-Based Support for EOSDIS Custoers A Concept and Proof-of-Concept Ipleentation

More information

Reliability Constrained Packet-sizing for Linear Multi-hop Wireless Networks

Reliability Constrained Packet-sizing for Linear Multi-hop Wireless Networks Reliability Constrained acket-sizing for inear Multi-hop Wireless Networks Ning Wen, and Randall A. Berry Departent of Electrical Engineering and Coputer Science Northwestern University, Evanston, Illinois

More information

Markovian inventory policy with application to the paper industry

Markovian inventory policy with application to the paper industry Coputers and Cheical Engineering 26 (2002) 1399 1413 www.elsevier.co/locate/copcheeng Markovian inventory policy with application to the paper industry K. Karen Yin a, *, Hu Liu a,1, Neil E. Johnson b,2

More information

2. FINDING A SOLUTION

2. FINDING A SOLUTION The 7 th Balan Conference on Operational Research BACOR 5 Constanta, May 5, Roania OPTIMAL TIME AND SPACE COMPLEXITY ALGORITHM FOR CONSTRUCTION OF ALL BINARY TREES FROM PRE-ORDER AND POST-ORDER TRAVERSALS

More information

The Application of Bandwidth Optimization Technique in SLA Negotiation Process

The Application of Bandwidth Optimization Technique in SLA Negotiation Process The Application of Bandwidth Optiization Technique in SLA egotiation Process Srecko Krile University of Dubrovnik Departent of Electrical Engineering and Coputing Cira Carica 4, 20000 Dubrovnik, Croatia

More information

Equivalent Tapped Delay Line Channel Responses with Reduced Taps

Equivalent Tapped Delay Line Channel Responses with Reduced Taps Equivalent Tapped Delay Line Channel Responses with Reduced Taps Shweta Sagari, Wade Trappe, Larry Greenstein {shsagari, trappe, ljg}@winlab.rutgers.edu WINLAB, Rutgers University, North Brunswick, NJ

More information

ADJUSTING FOR QUALITY CHANGE

ADJUSTING FOR QUALITY CHANGE ADJUSTING FOR QUALITY CHANGE 7 Introduction 7.1 The easureent of changes in the level of consuer prices is coplicated by the appearance and disappearance of new and old goods and services, as well as changes

More information

Entity Search Engine: Towards Agile Best-Effort Information Integration over the Web

Entity Search Engine: Towards Agile Best-Effort Information Integration over the Web Entity Search Engine: Towards Agile Best-Effort Inforation Integration over the Web Tao Cheng, Kevin Chen-Chuan Chang University of Illinois at Urbana-Chapaign {tcheng3, kcchang}@cs.uiuc.edu. INTRODUCTION

More information

COMBINING CRASH RECORDER AND PAIRED COMPARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMPACTS WITH SPECIAL REFERENCE TO NECK INJURIES

COMBINING CRASH RECORDER AND PAIRED COMPARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMPACTS WITH SPECIAL REFERENCE TO NECK INJURIES COMBINING CRASH RECORDER AND AIRED COMARISON TECHNIQUE: INJURY RISK FUNCTIONS IN FRONTAL AND REAR IMACTS WITH SECIAL REFERENCE TO NECK INJURIES Anders Kullgren, Maria Krafft Folksa Research, 66 Stockhol,

More information

Managing Complex Network Operation with Predictive Analytics

Managing Complex Network Operation with Predictive Analytics Managing Coplex Network Operation with Predictive Analytics Zhenyu Huang, Pak Chung Wong, Patrick Mackey, Yousu Chen, Jian Ma, Kevin Schneider, and Frank L. Greitzer Pacific Northwest National Laboratory

More information

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms

Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and migration algorithms Energy Efficient VM Scheduling for Cloud Data Centers: Exact allocation and igration algoriths Chaia Ghribi, Makhlouf Hadji and Djaal Zeghlache Institut Mines-Téléco, Téléco SudParis UMR CNRS 5157 9, Rue

More information

A framework for performance monitoring, load balancing, adaptive timeouts and quality of service in digital libraries

A framework for performance monitoring, load balancing, adaptive timeouts and quality of service in digital libraries Int J Digit Libr (2000) 3: 9 35 INTERNATIONAL JOURNAL ON Digital Libraries Springer-Verlag 2000 A fraework for perforance onitoring, load balancing, adaptive tieouts and quality of service in digital libraries

More information

Investing in corporate bonds?

Investing in corporate bonds? Investing in corporate bonds? This independent guide fro the Australian Securities and Investents Coission (ASIC) can help you look past the return and assess the risks of corporate bonds. If you re thinking

More information

Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks

Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks SECURITY AND COMMUNICATION NETWORKS Published online in Wiley InterScience (www.interscience.wiley.co). Generating Certification Authority Authenticated Public Keys in Ad Hoc Networks G. Kounga 1, C. J.

More information

Image restoration for a rectangular poor-pixels detector

Image restoration for a rectangular poor-pixels detector Iage restoration for a rectangular poor-pixels detector Pengcheng Wen 1, Xiangjun Wang 1, Hong Wei 2 1 State Key Laboratory of Precision Measuring Technology and Instruents, Tianjin University, China 2

More information

Leak detection in open water channels

Leak detection in open water channels Proceedings of the 17th World Congress The International Federation of Autoatic Control Seoul, Korea, July 6-11, 28 Leak detection in open water channels Erik Weyer Georges Bastin Departent of Electrical

More information

Adaptive Modulation and Coding for Unmanned Aerial Vehicle (UAV) Radio Channel

Adaptive Modulation and Coding for Unmanned Aerial Vehicle (UAV) Radio Channel Recent Advances in Counications Adaptive odulation and Coding for Unanned Aerial Vehicle (UAV) Radio Channel Airhossein Fereidountabar,Gian Carlo Cardarilli, Rocco Fazzolari,Luca Di Nunzio Abstract In

More information

Evaluating Software Quality of Vendors using Fuzzy Analytic Hierarchy Process

Evaluating Software Quality of Vendors using Fuzzy Analytic Hierarchy Process IMECS 2008 9-2 March 2008 Hong Kong Evaluating Software Quality of Vendors using Fuzzy Analytic Hierarchy Process Kevin K.F. Yuen* Henry C.W. au Abstract This paper proposes a fuzzy Analytic Hierarchy

More information

Dynamic Placement for Clustered Web Applications

Dynamic Placement for Clustered Web Applications Dynaic laceent for Clustered Web Applications A. Karve, T. Kibrel, G. acifici, M. Spreitzer, M. Steinder, M. Sviridenko, and A. Tantawi IBM T.J. Watson Research Center {karve,kibrel,giovanni,spreitz,steinder,sviri,tantawi}@us.ib.co

More information

( C) CLASS 10. TEMPERATURE AND ATOMS

( C) CLASS 10. TEMPERATURE AND ATOMS CLASS 10. EMPERAURE AND AOMS 10.1. INRODUCION Boyle s understanding of the pressure-volue relationship for gases occurred in the late 1600 s. he relationships between volue and teperature, and between

More information

Investing in corporate bonds?

Investing in corporate bonds? Investing in corporate bonds? This independent guide fro the Australian Securities and Investents Coission (ASIC) can help you look past the return and assess the risks of corporate bonds. If you re thinking

More information

Introduction to the Microsoft Sync Framework. Michael Clark Development Manager Microsoft

Introduction to the Microsoft Sync Framework. Michael Clark Development Manager Microsoft Introduction to the Michael Clark Developent Manager Microsoft Agenda Why Is Sync both Interesting and Hard Sync Fraework Overview Using the Sync Fraework Future Directions Suary Why Is Sync Iportant Coputing

More information

Halloween Costume Ideas for the Wii Game

Halloween Costume Ideas for the Wii Game Algorithica 2001) 30: 101 139 DOI: 101007/s00453-001-0003-0 Algorithica 2001 Springer-Verlag New York Inc Optial Search and One-Way Trading Online Algoriths R El-Yaniv, 1 A Fiat, 2 R M Karp, 3 and G Turpin

More information

Insurance Spirals and the Lloyd s Market

Insurance Spirals and the Lloyd s Market Insurance Spirals and the Lloyd s Market Andrew Bain University of Glasgow Abstract This paper presents a odel of reinsurance arket spirals, and applies it to the situation that existed in the Lloyd s

More information

Protecting Small Keys in Authentication Protocols for Wireless Sensor Networks

Protecting Small Keys in Authentication Protocols for Wireless Sensor Networks Protecting Sall Keys in Authentication Protocols for Wireless Sensor Networks Kalvinder Singh Australia Developent Laboratory, IBM and School of Inforation and Counication Technology, Griffith University

More information

ON SELF-ROUTING IN CLOS CONNECTION NETWORKS. BARRY G. DOUGLASS Electrical Engineering Department Texas A&M University College Station, TX 77843-3128

ON SELF-ROUTING IN CLOS CONNECTION NETWORKS. BARRY G. DOUGLASS Electrical Engineering Department Texas A&M University College Station, TX 77843-3128 ON SELF-ROUTING IN CLOS CONNECTION NETWORKS BARRY G. DOUGLASS Electrical Engineering Departent Texas A&M University College Station, TX 778-8 A. YAVUZ ORUÇ Electrical Engineering Departent and Institute

More information

An improved TF-IDF approach for text classification *

An improved TF-IDF approach for text classification * Zhang et al. / J Zheiang Univ SCI 2005 6A(1:49-55 49 Journal of Zheiang University SCIECE ISS 1009-3095 http://www.zu.edu.cn/zus E-ail: zus@zu.edu.cn An iproved TF-IDF approach for text classification

More information

Position Auctions and Non-uniform Conversion Rates

Position Auctions and Non-uniform Conversion Rates Position Auctions and Non-unifor Conversion Rates Liad Blurosen Microsoft Research Mountain View, CA 944 liadbl@icrosoft.co Jason D. Hartline Shuzhen Nong Electrical Engineering and Microsoft AdCenter

More information

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller

Design of Model Reference Self Tuning Mechanism for PID like Fuzzy Controller Research Article International Journal of Current Engineering and Technology EISSN 77 46, PISSN 347 56 4 INPRESSCO, All Rights Reserved Available at http://inpressco.co/category/ijcet Design of Model Reference

More information

REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES

REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES REQUIREMENTS FOR A COMPUTER SCIENCE CURRICULUM EMPHASIZING INFORMATION TECHNOLOGY SUBJECT AREA: CURRICULUM ISSUES Charles Reynolds Christopher Fox reynolds @cs.ju.edu fox@cs.ju.edu Departent of Coputer

More information

Local Area Network Management

Local Area Network Management Technology Guidelines for School Coputer-based Technologies Local Area Network Manageent Local Area Network Manageent Introduction This docuent discusses the tasks associated with anageent of Local Area

More information

Online Community Detection for Large Complex Networks

Online Community Detection for Large Complex Networks Proceedings of the Twenty-Third International Joint Conference on Artificial Intelligence Online Counity Detection for Large Coplex Networks Wangsheng Zhang, Gang Pan, Zhaohui Wu, Shijian Li Departent

More information

High Performance Chinese/English Mixed OCR with Character Level Language Identification

High Performance Chinese/English Mixed OCR with Character Level Language Identification 2009 0th International Conference on Docuent Analysis and Recognition High Perforance Chinese/English Mixed OCR with Character Level Language Identification Kai Wang Institute of Machine Intelligence,

More information

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013

Calculation Method for evaluating Solar Assisted Heat Pump Systems in SAP 2009. 15 July 2013 Calculation Method for evaluating Solar Assisted Heat Pup Systes in SAP 2009 15 July 2013 Page 1 of 17 1 Introduction This docuent describes how Solar Assisted Heat Pup Systes are recognised in the National

More information

A Scalable Application Placement Controller for Enterprise Data Centers

A Scalable Application Placement Controller for Enterprise Data Centers W WWW 7 / Track: Perforance and Scalability A Scalable Application Placeent Controller for Enterprise Data Centers Chunqiang Tang, Malgorzata Steinder, Michael Spreitzer, and Giovanni Pacifici IBM T.J.

More information

Online Methods for Multi-Domain Learning and Adaptation

Online Methods for Multi-Domain Learning and Adaptation Online Methods for Multi-Doain Learning and Adaptation Mark Dredze and Koby Craer Departent of Coputer and Inforation Science University of Pennsylvania Philadelphia, PA 19104 USA {dredze,craer}@cis.upenn.edu

More information

Standards and Protocols for the Collection and Dissemination of Graduating Student Initial Career Outcomes Information For Undergraduates

Standards and Protocols for the Collection and Dissemination of Graduating Student Initial Career Outcomes Information For Undergraduates National Association of Colleges and Eployers Standards and Protocols for the Collection and Disseination of Graduating Student Initial Career Outcoes Inforation For Undergraduates Developed by the NACE

More information

Modeling Cooperative Gene Regulation Using Fast Orthogonal Search

Modeling Cooperative Gene Regulation Using Fast Orthogonal Search 8 The Open Bioinforatics Journal, 28, 2, 8-89 Open Access odeling Cooperative Gene Regulation Using Fast Orthogonal Search Ian inz* and ichael J. Korenberg* Departent of Electrical and Coputer Engineering,

More information

Load Control for Overloaded MPLS/DiffServ Networks during SLA Negotiation

Load Control for Overloaded MPLS/DiffServ Networks during SLA Negotiation Int J Counications, Network and Syste Sciences, 29, 5, 422-432 doi:14236/ijcns292547 Published Online August 29 (http://wwwscirporg/journal/ijcns/) Load Control for Overloaded MPLS/DiffServ Networks during

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

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding

IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1. Secure Wireless Multicast for Delay-Sensitive Data via Network Coding IEEE TRANSACTIONS ON WIRELESS COMMUNICATIONS, ACCEPTED FOR PUBLICATION 1 Secure Wireless Multicast for Delay-Sensitive Data via Network Coding Tuan T. Tran, Meber, IEEE, Hongxiang Li, Senior Meber, IEEE,

More information

Resource Allocation in Wireless Networks with Multiple Relays

Resource Allocation in Wireless Networks with Multiple Relays Resource Allocation in Wireless Networks with Multiple Relays Kağan Bakanoğlu, Stefano Toasin, Elza Erkip Departent of Electrical and Coputer Engineering, Polytechnic Institute of NYU, Brooklyn, NY, 0

More information

Capacity of Multiple-Antenna Systems With Both Receiver and Transmitter Channel State Information

Capacity of Multiple-Antenna Systems With Both Receiver and Transmitter Channel State Information IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO., OCTOBER 23 2697 Capacity of Multiple-Antenna Systes With Both Receiver and Transitter Channel State Inforation Sudharan K. Jayaweera, Student Meber,

More information

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization

Impact of Processing Costs on Service Chain Placement in Network Functions Virtualization Ipact of Processing Costs on Service Chain Placeent in Network Functions Virtualization Marco Savi, Massio Tornatore, Giacoo Verticale Dipartiento di Elettronica, Inforazione e Bioingegneria, Politecnico

More information

A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS

A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS A CHAOS MODEL OF SUBHARMONIC OSCILLATIONS IN CURRENT MODE PWM BOOST CONVERTERS Isaac Zafrany and Sa BenYaakov Departent of Electrical and Coputer Engineering BenGurion University of the Negev P. O. Box

More information

SUBJECTIVE AND OBJECTIVE SLEEPINESS IN THE ACTIVE INDIVIDUAL

SUBJECTIVE AND OBJECTIVE SLEEPINESS IN THE ACTIVE INDIVIDUAL 28 U. TAN, 1. KARA AND S. TAN Tricyclic antidepressants such as iiprain were reported to increase the difference between serotonin levels in heispheres (Knapp & Mandell, 1980). This is also in accord with

More information

Markov Models and Their Use for Calculations of Important Traffic Parameters of Contact Center

Markov Models and Their Use for Calculations of Important Traffic Parameters of Contact Center Markov Models and Their Use for Calculations of Iportant Traffic Paraeters of Contact Center ERIK CHROMY, JAN DIEZKA, MATEJ KAVACKY Institute of Telecounications Slovak University of Technology Bratislava

More information

Mathematical Model for Glucose-Insulin Regulatory System of Diabetes Mellitus

Mathematical Model for Glucose-Insulin Regulatory System of Diabetes Mellitus Advances in Applied Matheatical Biosciences. ISSN 8-998 Volue, Nuber (0), pp. 9- International Research Publication House http://www.irphouse.co Matheatical Model for Glucose-Insulin Regulatory Syste of

More information

Endogenous Credit-Card Acceptance in a Model of Precautionary Demand for Money

Endogenous Credit-Card Acceptance in a Model of Precautionary Demand for Money Endogenous Credit-Card Acceptance in a Model of Precautionary Deand for Money Adrian Masters University of Essex and SUNY Albany Luis Raúl Rodríguez-Reyes University of Essex March 24 Abstract A credit-card

More information

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN

Airline Yield Management with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Airline Yield Manageent with Overbooking, Cancellations, and No-Shows JANAKIRAM SUBRAMANIAN Integral Developent Corporation, 301 University Avenue, Suite 200, Palo Alto, California 94301 SHALER STIDHAM

More information

Presentation Safety Legislation and Standards

Presentation Safety Legislation and Standards levels in different discrete levels corresponding for each one to a probability of dangerous failure per hour: > > The table below gives the relationship between the perforance level (PL) and the Safety

More information

SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS

SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS WHITE PAPER SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS Quanti Solutions. Advancing HIM through Innovation HEALTHCARE SUPPORTING YOUR HIPAA COMPLIANCE EFFORTS Quanti Solutions. Advancing HIM through Innovation

More information

Driving Behavior Analysis Based on Vehicle OBD Information and AdaBoost Algorithms

Driving Behavior Analysis Based on Vehicle OBD Information and AdaBoost Algorithms , March 18-20, 2015, Hong Kong Driving Behavior Analysis Based on Vehicle OBD Inforation and AdaBoost Algoriths Shi-Huang Chen, Jeng-Shyang Pan, and Kaixuan Lu Abstract This paper proposes a novel driving

More information

Method of supply chain optimization in E-commerce

Method of supply chain optimization in E-commerce MPRA Munich Personal RePEc Archive Method of supply chain optiization in E-coerce Petr Suchánek and Robert Bucki Silesian University - School of Business Adinistration, The College of Inforatics and Manageent

More information