Similar Sentence Retrieval for Machine Translation Based on Word-Aligned Bilingual Corpus

Size: px
Start display at page:

Download "Similar Sentence Retrieval for Machine Translation Based on Word-Aligned Bilingual Corpus"

Transcription

1 Smlar Sentence Retreval for Machne Translaton Based on Word-Algned Blngual Corpus Wen-Han Chao and Zhou-Jun L School of Computer Scence, Natonal Unversty of Defense Technology, Chna, cwhk@63.com School of Computer Scence and Engneerng, Behang Unversty, Chna, lzj@buaa.edu.cn Abstract. In ths paper, we present a novel method to retreve the smlar examples from the corpus when gven an nput whch should be translated, n whch we use the word algnment between the blngual sentence par to measure the smlarty of the nput and the example. Introducton Measures of the sentence smlarty are very mportant n many NLP applcatons, such as machne translaton (MT), especally the example-based machne translaton (EBMT) [], nformaton retreval (IR) and text summarzaton etc. Recently, some researchers present a hybrd corpus-based machne translaton system[], whch s a statstcal machne translaton (SMT), whle usng an examplebased decoder, n whch the smlar translaton examples wll avod translatng from the scratch, and the smlar examples retreved wll affect the results greatly. When retrevng the smlar examples, most of the metrcs measure the smlarty of the two monolngual sentences. However, n a hybrd machne translaton system, the examples n the tranng corpus provde rch nformaton, such as word algnment. In ths paper, we provde a novel approach, whch use the blngual nformaton of the examples to retreve the smlar examples for an nput sentence. The Word-Algned Blngual Corpus for MT There are two types of corpus-based MT systems: Statstcal Machne Translaton (SMT) and EBMT. SMT obtans the translaton models durng tranng, and does not need the tranng corpus when decodng; whle EBMT retreves the smlar examples n the corpus when translatng. For both of them use the same corpus, we can generate a hybrd MT, whch s a SMT system, whle usng an example-based decoder. Generally, the hybrd MT system uses a word-algned blngual corpus, whch s a collecton of the word-algned sentence par, represented as (C, A,, where C s the source language sentence, and E s the target language sentence and A s the word algnment between C and E. H. L et al. (Eds.): AIRS 008, LNCS 4993, pp , 008. Sprnger-Verlag Berln Hedelberg 008

2 Smlar Sentence Retreval for Machne Translaton 579 A word algnment s defned as follows: gven a sentence par (C,, we defne a lnk l = (.. j, s.. t), where.. j represents a sequence of words n sentence C, where and j are poston ndexes,.e., +,..., j ; and s.. t represents a sequence of words n sentence E. So each lnk represents the algnment between the consecutve words n both of the sentences. A word algnment between a sentence par s a set of lnks A = { l, l,..., l n}. In the paper, the example refers to a trple (C, A,. We can merge two lnks l = (.. j, s.. t) and l = (.. j, s.. t) to form a larger lnk, f the two lnks are adjacent n both of the sentences,.e... j s adjacent to.. j where = j + or = j +, or.. j (or.. j ) s ε, so do the s..t to s..t. If the regon (.. j, s.. t) can be formed by mergng two adjacent lnks gradually, we call the regon s ndependent. Fgure (a) shows a word algnment example; the number below the word s the poston ndex. In the example, the regon (..3, 3..5) s ndependent. ² q « where s the3 nearest4 cassno5?6 (a) An example wth word algnment / the ² q / nearest «/ cassno / where s /? (b) An ITG tree Fg.. An ITG tree whch s derved from the ITG. A lne between the branches means an nverted orentaton, otherwse a straght one. In our hybrd MT system, the word algnment n the corpus must satsfy the Inverson Transducton Grammar (ITG) constrant[3], so that each word algnment wll form a bnary branchng tree, whch provdes a weak but effectve way to constran the re-orderng of the words. Fgure b llustrates an ITG tree formed from the algnment. Usng the word-algned blngual corpus, we can extract the phrase pars, called as blocks. Each block s formed by combnng one or more lnks, and must be ndependent. Then, we buld the correspondng translaton models usng the relatve frequences. 3 The Fast Retreval of Smlar Sentences We dvde the retreval of smlar examples nto two phases: Fast Retreval Phase: retrevng the smlar examples from the corpus quckly, and take them as canddates. The complexty should be not too hgh. Refnng Phase: refnng the canddates to fnd the most smlar examples. In ths secton, we wll descrbe how to retreve the smlar examples quckly through the followng three smlarty metrcs.

3 580 W.-H. Chao and Z.-J. L 3. The Matched Words Metrc Gven an nput sentence I = ww... wn and an example (C, A,, we calculate the number of the matched source words between the nput sentence and the source sentence C n the example frstly. * Match Sm ( Input, Example ) word word = () Len ( I ) + Len ( C, A, E ) where Match s the number of the matched words, Len (I) s the number of word words n I, and Len( C, A, s the number of the words n the n C. 3. The Matched Blocks Metrc Gven an nput sentence w ( {,,... n}). We use I w w... w =, we search the blocks for each word Bk n to represent the blocks, n whch for each block ( c, e), the source phrase c use the word w as the frst word, and the length of c s c = w k k,.e. the..( + ). In order to retreve the k, we frst get all the source phrases wth w as the frst word, and then fnd the blocks for each source phrase c n the translaton model. Consderng the complexty, we set M as the maxmum length of the source phrase (here M=3 or 5),.e., k M. For each c, there may exsts more than one blocks wth c as the source phrase, so we wll sort them by the probablty and keep the best N (here set N=5) blocks. Now we represent the nput sentence as: B σ ( I ) = { block block Bk, n, k M } () For example, n an nput sentence, the = {(, ), (, me ), (, my ), (, )}. Note, some B may be B Mne empty, e.g. B = φ In the same way, we represent the example ( C, A, as: k, snce no blocks wth as the source phrase. ϕ ( C, A, = { block block Bk, block A*, k M } (3) where * A represents the blocks whch are lnks n the algnment A or can be formed by mergng adjacent lnks ndependently. In order to accelerate the retreval of smlar examples, we generate the block set for each example durng the tranng process and store them n the corpus. Now, we can use the number of the matched blocks to measure the smlarty of the nput and the example:

4 Smlar Sentence Retreval for Machne Translaton 58 Sm block ( Input, Example ) = * Match B + B Input block Example (4) where Match block s the number of the matched blocks and Bk ( B k φ ) n (I ) ( C, A, B Input B s the number of σ, and Example s the number of the blocks n ϕ. Snce each block s attached a probablty, we can compute the smlarty n the followng way: * Pr ob ( b) Sm b prob ( Input, Example ) = (5) Input Example B + B So the fnal smlarty metrc for fast retreval of the canddates s: Smfast( Input, Example) = α Smblock + βsmword + γsmprob (6) where α + β + γ =. Zhao et al.[4] provdes a method to tune the weghts, but here we use mean values,.e. α = β = γ = / 3. Durng the fast retreval phase, we frst flter out the examples usng the Sm word, then calculate the Sm fast for each example left, and retreve the best N examples. 4 Refne the Canddates After retrevng the canddate smlar examples, we refne the canddates usng the swallow structure of the sentences, to fnd the best M smlar examples. 4. The Algnment Structure Metrc Gven the nput sentence I and an example ( C, A,, we frst search the matched blocks, at ths moment the order of the source phrases n the blocks must correspond wth the order of the words n the nput. As Fgure shows, the matchng dvdes the nput and the example respectvely nto several regons, where some regons are matched and some un-matched. And we take each regon as a whole and algn them between the nput and the example accordng to the order of the matched regons. For example, the regon (..3,3..5) n ( C, A, s un-matched, whch algns to the regon (..) n I. In ths way, we can use a smlar edt dstance method to measure the smlarty. We count the number of the Deleton/Inserton/Substtuton operatons, whch take the regon as the object. We set the penalty for each deleton and nserton operaton as, whle consderng the un-matched regon n the example may be ndependent or not, we set the penalty for substtuton as 0.5 f the regon s ndependent, otherwse as. E.g., the dstance s 0.5 for substtutng the regon (..3,3..5) to (..).

5 58 W.-H. Chao and Z.-J. L ² q « ŸÂ 3 4 where s the 3 nearest 4 cassno 5?6 (a) An example (b) An nput Fg.. An nput and an example. After matchng, there are three regons n both sdes, whch are ncluded n the lne box, where the regon (4..5,..) n the example matches the regon (..3) n the nput, so do (6..6,6..6) to (4..4). And the regon (..3,3..5) n the example should be substtuted to (..) n the nput. We get the metrc for measurng the structure smlarty of the I and (, A, C : Sm algn ( Input, Example D + I + S ) = R + R nput exmaple (7) where D, I, S are the deleton, nserton and substtuton dstances, respectvely. And the R nput and Rexmaple are the regon numbers n the nput and example. 4. The Semantc Metrc We calculate the semantc dstance usng the Tong_Y_C_C_Ln [6], whch s a Chnese semantc lexcon. In the lexcon, the semantcs of the words are dvded nto three levels, called large, mddle and small level, represented as the uppercase letter, lowercase letter, and nteger number respectvely, so that t can represent a semantc usng a unque code. Each code may nclude one or more words, and each word may have one or more codes, for t may have multple semantcs. For example, and have the same code Aa0, the code for s Aa03. Now, we can compute the semantc dstance between two words usng the codes they are marked: If the large level s dfferent, the dstance s 3; the mddle s ; and the small s ; f the codes are equal, the dstance s 0. Snce each word has more than one code, we wll choose the nearest dstance. Usng the semantc dstance of words, we can measure the semantc dstance of two regons n the nput and the example. mn [ Dstword _ sem( w, w )]/ 3 w reg w reg Dstreg _ sem( reg, reg) = (8) Len( reg) + Len( reg) Gven the same match as secton 4., the substtuton dstance s the sum of semantc dstance of the substtuton regons: S sem ( Input, Example ) = Dst reg _ sem ( regon nput, regon example ) (9) regons

6 Smlar Sentence Retreval for Machne Translaton 583 Then, we obtan the semantc metrc: Sm sem ( Input, Example ) = D + I + S R + R nput sem exmaple (0) In the end, we obtan the smlarty metrc, whch consders all of the above metrcs: Sm fnal ( Input, Example ) α ' Sm fast + β ' Sm algn + γ ' Sm sem = () where α ' + β ' + γ ' =. Here we also use the mean values as the weghts. 5 Experments We carred out experments on a Chnese-Englsh blngual corpus, whch s the tranng corpus n the open Chnese-Englsh translaton task of IWSLT007, consstng of the sentence-algned spoken language text for travelng. The tranng corpus conssts of 39,953 sentence pars, and the test set 489 Chnese sentences. We lowercased and stemmed the words n the Englsh sentences for preprocessng. Durng the tranng, we obtaned frstly the word algnments, whch satsfy the ITG constrant, for the sentence pars n the corpus; then bult the translaton models, and retreved and stored the blocks n each examples,.e. ϕ ( C, A,. 5. Evaluaton of the Retreval of Smlar Examples We evaluate our retreval method n manual way: obtan 00 nput sentences from the test set randomly, take them as nputs to retreve the smlar examples (0 examples for each nput), and verfy manually whether the retreved examples are smlar to the nputs. We defne a correct smlar example as the followng way: f the retreved example can be turned to the nput sentence by modfyng x ndependent regons, where each regon conssts of at most y blocks (here set y = ). To evaluate the two retreval phases, we also get the best 0 examples for the fast retreval phrase n the canddates, and compare wth the fnal 0 examples. Table shows the results. It shows the correct number and accuraces for both phases by changed the x. Wth x becomes larger, the accuraces are hgher. When x =, the accuraces are both 45%, because some of the nput sentences are very short, and both of the two phases wll fnd the exactly smlar examples. But when x becomes larger, the refned retreval wll get more accurate examples. 5. Evaluaton of the Translaton Our goal s to mprove the translaton qualty, so we combned the retreval module nto our hybrd MT system, and compared the translaton results wth other SMT systems. The results lst n Table. The frst column lsts the MT systems: the frst two systems are two SMT systems, where Moses[7] s a state-of-the-art SMT system, and SMT-CKY s our SMT system

7 584 W.-H. Chao and Z.-J. L wth a CKY style decoder; the last two systems are hybrd MT systems wth fast retreval module and refned retreval module. The second column lsts the Bleu scores[8] for these systems. The results show that our hybrd MT system acheves an mprovement when usng the new retreval module. We conclude our method to retreve the smlar examples s effectve. Table. The results for retreval of smlar sentences Test x = x = x = 3 Number Corr. Accu. Corr. Accu. Corr. Accu. Fast Retreval % % 55% 77.5% Refned Retreval % % 74 87% Table. The results of translaton System Bleu(%) Moses.6 SMT-CKY 8.33 Hybrd MT wth fast retreval Hybrd MT wth refned retreval Conclusons We present a method to retreve the smlar examples for the nput sentence n the hybrd MT systems. The approach makes good use of the word algnment nformaton contaned n the corpus. Snce the method consders the nternal translaton process contaned mplctly n each example, t helps to mprove the translaton qualty. In the future, we wll mprove the refnng metrc further, especally the semantc metrc, and consder how to tune the weghts. Also, we should consder how to use the retreved examples more effectvely. Acknowledgements Ths work s supported by the Natonal Scence Foundaton of Chna under Grants No , and References. Mandreol, F., Martogla, R., Tbero, P.: Searchng Smlar (Sub)Sentences for Example- Based Machne Translaton. In: Att del Decmo Convegno Nazonale su Sstem Evolut per Bas d Datt (SEBD 00 ), Isola d Elba, Italy (00). Watanabe, T., Sumta, E.: Example-based Decodng for Statstcal Machne Translaton. Machne Translaton Summt IX, (003)

8 Smlar Sentence Retreval for Machne Translaton Wu, D.: Stochastc Inverson Transducton Grammars and Blngual Parsng of Parallel Corpora. Computatonal Lngustcs 3(3), 374 (997) 4. Zhao, Y.Y., Qn, B., Lu, T., Su, Z.-Z.: Sentence Smlarty Computng Based on Mult- Features Fuson. In: The Proceedngs of JSCL 005, August 005, pp (005) 5. L, B., Lu, T., Qn, B., L, S.: Chnese Sentence Smlarty Computng Based on Semantc Dependency Parsng (003) 6. Me, J.J., Zhu, Y.M., Gao, Y.Q., Yn, H.X.: Tong Y C C Ln, nd edn., Shangha (996) 7. Moses, 8. Papnen, K., Roukos, S., Ward, T., Zhu, W.-J.: BLEU: a Method for Automatc Evaluaton of Machne Translaton. In: Proceedngs of the 40th Annual Meetng of the Assocaton for Computatonal Lngustcs (ACL), Phladelpha, July 00, pp (00)

Rotation Invariant Shape Contexts based on Feature-space Fourier Transformation

Rotation Invariant Shape Contexts based on Feature-space Fourier Transformation Fourth Internatonal Conference on Image and Graphcs Rotaton Invarant Shape Contexts based on Feature-space Fourer Transformaton Su Yang 1, Yuanyuan Wang Dept of Computer Scence and Engneerng, Fudan Unversty,

More information

ANSWERS. Problem 1. and the moment generating function (mgf) by. defined for any real t. Use this to show that E( U) var( U)

ANSWERS. Problem 1. and the moment generating function (mgf) by. defined for any real t. Use this to show that E( U) var( U) Econ 413 Exam 13 H ANSWERS Settet er nndelt 9 deloppgaver, A,B,C, som alle anbefales å telle lkt for å gøre det ltt lettere å stå. Svar er gtt . Unfortunately, there s a prntng error n the hnt of

More information

Power law and dimension of the maximum value for belief distribution with the max Deng entropy

Power law and dimension of the maximum value for belief distribution with the max Deng entropy Power law and dmenson of the maxmum value for belef dstrbuton wth the max Deng entropy Bngy Kang a, a College of Informaton Engneerng, Northwest A&F Unversty, Yanglng, Shaanx, 712100, Chna. Abstract Deng

More information

Meta-Structure Transformation Model for Statistical Machine Translation

Meta-Structure Transformation Model for Statistical Machine Translation Meta-Structure Transformaton Model for Statstcal Machne Translaton Jadong Sun, Tejun, Zhao and Huashen Lang MOE-MS Key Lab of Natonal Language Processng and speech Harbn Insttute of Technology No. 92,

More information

A New Evolutionary Computation Based Approach for Learning Bayesian Network

A New Evolutionary Computation Based Approach for Learning Bayesian Network Avalable onlne at www.scencedrect.com Proceda Engneerng 15 (2011) 4026 4030 Advanced n Control Engneerng and Informaton Scence A New Evolutonary Computaton Based Approach for Learnng Bayesan Network Yungang

More information

Calculation of time complexity (3%)

Calculation of time complexity (3%) Problem 1. (30%) Calculaton of tme complexty (3%) Gven n ctes, usng exhaust search to see every result takes O(n!). Calculaton of tme needed to solve the problem (2%) 40 ctes:40! dfferent tours 40 add

More information

Orientation Model of Elite Education and Mass Education

Orientation Model of Elite Education and Mass Education Proceedngs of the 8th Internatonal Conference on Innovaton & Management 723 Orentaton Model of Elte Educaton and Mass Educaton Ye Peng Huanggang Normal Unversty, Huanggang, P.R.Chna, 438 (E-mal: yepeng@hgnc.edu.cn)

More information

Learning Theory: Lecture Notes

Learning Theory: Lecture Notes Learnng Theory: Lecture Notes Lecturer: Kamalka Chaudhur Scrbe: Qush Wang October 27, 2012 1 The Agnostc PAC Model Recall that one of the constrants of the PAC model s that the data dstrbuton has to be

More information

Operating conditions of a mine fan under conditions of variable resistance

Operating conditions of a mine fan under conditions of variable resistance Paper No. 11 ISMS 216 Operatng condtons of a mne fan under condtons of varable resstance Zhang Ynghua a, Chen L a, b, Huang Zhan a, *, Gao Yukun a a State Key Laboratory of Hgh-Effcent Mnng and Safety

More information

Semi-supervised Classification with Active Query Selection

Semi-supervised Classification with Active Query Selection Sem-supervsed Classfcaton wth Actve Query Selecton Jao Wang and Swe Luo School of Computer and Informaton Technology, Beng Jaotong Unversty, Beng 00044, Chna Wangjao088@63.com Abstract. Labeled samples

More information

A Lexicalized Reordering Model for Hierarchical Phrase-based Translation 1

A Lexicalized Reordering Model for Hierarchical Phrase-based Translation 1 A Lexcalzed Reorderng Model for Herarchcal Phrase-based Translaton 1 Halong Cao 1, Dongdong Zhang 2, Mu L 2, Mng Zhou 2 and Tejun Zhao 1 1 Harbn Insttute of Technology, Harbn, P.R. Chna 2 Mcrosoft Research

More information

An Improved multiple fractal algorithm

An Improved multiple fractal algorithm Advanced Scence and Technology Letters Vol.31 (MulGraB 213), pp.184-188 http://dx.do.org/1.1427/astl.213.31.41 An Improved multple fractal algorthm Yun Ln, Xaochu Xu, Jnfeng Pang College of Informaton

More information

Note on EM-training of IBM-model 1

Note on EM-training of IBM-model 1 Note on EM-tranng of IBM-model INF58 Language Technologcal Applcatons, Fall The sldes on ths subject (nf58 6.pdf) ncludng the example seem nsuffcent to gve a good grasp of what s gong on. Hence here are

More information

Kernel Methods and SVMs Extension

Kernel Methods and SVMs Extension Kernel Methods and SVMs Extenson The purpose of ths document s to revew materal covered n Machne Learnng 1 Supervsed Learnng regardng support vector machnes (SVMs). Ths document also provdes a general

More information

MAXIMUM A POSTERIORI TRANSDUCTION

MAXIMUM A POSTERIORI TRANSDUCTION MAXIMUM A POSTERIORI TRANSDUCTION LI-WEI WANG, JU-FU FENG School of Mathematcal Scences, Peng Unversty, Bejng, 0087, Chna Center for Informaton Scences, Peng Unversty, Bejng, 0087, Chna E-MIAL: {wanglw,

More information

The Study of Teaching-learning-based Optimization Algorithm

The Study of Teaching-learning-based Optimization Algorithm Advanced Scence and Technology Letters Vol. (AST 06), pp.05- http://dx.do.org/0.57/astl.06. The Study of Teachng-learnng-based Optmzaton Algorthm u Sun, Yan fu, Lele Kong, Haolang Q,, Helongang Insttute

More information

Lecture Notes on Linear Regression

Lecture Notes on Linear Regression Lecture Notes on Lnear Regresson Feng L fl@sdueducn Shandong Unversty, Chna Lnear Regresson Problem In regresson problem, we am at predct a contnuous target value gven an nput feature vector We assume

More information

Lecture 5 Decoding Binary BCH Codes

Lecture 5 Decoding Binary BCH Codes Lecture 5 Decodng Bnary BCH Codes In ths class, we wll ntroduce dfferent methods for decodng BCH codes 51 Decodng the [15, 7, 5] 2 -BCH Code Consder the [15, 7, 5] 2 -code C we ntroduced n the last lecture

More information

Problem Set 6: Trees Spring 2018

Problem Set 6: Trees Spring 2018 Problem Set 6: Trees 1-29 Sprng 2018 A Average dstance Gven a tree, calculate the average dstance between two vertces n the tree. For example, the average dstance between two vertces n the followng tree

More information

CHAPTER IV RESEARCH FINDING AND DISCUSSIONS

CHAPTER IV RESEARCH FINDING AND DISCUSSIONS CHAPTER IV RESEARCH FINDING AND DISCUSSIONS A. Descrpton of Research Fndng. The Implementaton of Learnng Havng ganed the whole needed data, the researcher then dd analyss whch refers to the statstcal data

More information

Message modification, neutral bits and boomerangs

Message modification, neutral bits and boomerangs Message modfcaton, neutral bts and boomerangs From whch round should we start countng n SHA? Antone Joux DGA and Unversty of Versalles St-Quentn-en-Yvelnes France Jont work wth Thomas Peyrn 1 Dfferental

More information

Chapter 2 A Class of Robust Solution for Linear Bilevel Programming

Chapter 2 A Class of Robust Solution for Linear Bilevel Programming Chapter 2 A Class of Robust Soluton for Lnear Blevel Programmng Bo Lu, Bo L and Yan L Abstract Under the way of the centralzed decson-makng, the lnear b-level programmng (BLP) whose coeffcents are supposed

More information

Errors for Linear Systems

Errors for Linear Systems Errors for Lnear Systems When we solve a lnear system Ax b we often do not know A and b exactly, but have only approxmatons  and ˆb avalable. Then the best thng we can do s to solve ˆx ˆb exactly whch

More information

VQ widely used in coding speech, image, and video

VQ widely used in coding speech, image, and video at Scalar quantzers are specal cases of vector quantzers (VQ): they are constraned to look at one sample at a tme (memoryless) VQ does not have such constrant better RD perfomance expected Source codng

More information

Design and Analysis of Algorithms

Design and Analysis of Algorithms Desgn and Analyss of Algorthms CSE 53 Lecture 4 Dynamc Programmng Junzhou Huang, Ph.D. Department of Computer Scence and Engneerng CSE53 Desgn and Analyss of Algorthms The General Dynamc Programmng Technque

More information

For now, let us focus on a specific model of neurons. These are simplified from reality but can achieve remarkable results.

For now, let us focus on a specific model of neurons. These are simplified from reality but can achieve remarkable results. Neural Networks : Dervaton compled by Alvn Wan from Professor Jtendra Malk s lecture Ths type of computaton s called deep learnng and s the most popular method for many problems, such as computer vson

More information

CONTRAST ENHANCEMENT FOR MIMIMUM MEAN BRIGHTNESS ERROR FROM HISTOGRAM PARTITIONING INTRODUCTION

CONTRAST ENHANCEMENT FOR MIMIMUM MEAN BRIGHTNESS ERROR FROM HISTOGRAM PARTITIONING INTRODUCTION CONTRAST ENHANCEMENT FOR MIMIMUM MEAN BRIGHTNESS ERROR FROM HISTOGRAM PARTITIONING N. Phanthuna 1,2, F. Cheevasuvt 2 and S. Chtwong 2 1 Department of Electrcal Engneerng, Faculty of Engneerng Rajamangala

More information

HMMT February 2016 February 20, 2016

HMMT February 2016 February 20, 2016 HMMT February 016 February 0, 016 Combnatorcs 1. For postve ntegers n, let S n be the set of ntegers x such that n dstnct lnes, no three concurrent, can dvde a plane nto x regons (for example, S = {3,

More information

Amusing Properties of Odd Numbers Derived From Valuated Binary Tree

Amusing Properties of Odd Numbers Derived From Valuated Binary Tree IOSR Journal of Mathematcs (IOSR-JM) e-iss: 78-578, p-iss: 19-765X. Volume 1, Issue 6 Ver. V (ov. - Dec.016), PP 5-57 www.osrjournals.org Amusng Propertes of Odd umbers Derved From Valuated Bnary Tree

More information

More metrics on cartesian products

More metrics on cartesian products More metrcs on cartesan products If (X, d ) are metrc spaces for 1 n, then n Secton II4 of the lecture notes we defned three metrcs on X whose underlyng topologes are the product topology The purpose of

More information

Recover plaintext attack to block ciphers

Recover plaintext attack to block ciphers Recover plantext attac to bloc cphers L An-Png Bejng 100085, P.R.Chna apl0001@sna.com Abstract In ths paper, we wll present an estmaton for the upper-bound of the amount of 16-bytes plantexts for Englsh

More information

CHAPTER IV RESEARCH FINDING AND ANALYSIS

CHAPTER IV RESEARCH FINDING AND ANALYSIS CHAPTER IV REEARCH FINDING AND ANALYI A. Descrpton of Research Fndngs To fnd out the dfference between the students who were taught by usng Mme Game and the students who were not taught by usng Mme Game

More information

A Multimodal Fusion Algorithm Based on FRR and FAR Using SVM

A Multimodal Fusion Algorithm Based on FRR and FAR Using SVM Internatonal Journal of Securty and Its Applcatons A Multmodal Fuson Algorthm Based on FRR and FAR Usng SVM Yong L 1, Meme Sh 2, En Zhu 3, Janpng Yn 3, Janmn Zhao 4 1 Department of Informaton Engneerng,

More information

College of Computer & Information Science Fall 2009 Northeastern University 20 October 2009

College of Computer & Information Science Fall 2009 Northeastern University 20 October 2009 College of Computer & Informaton Scence Fall 2009 Northeastern Unversty 20 October 2009 CS7880: Algorthmc Power Tools Scrbe: Jan Wen and Laura Poplawsk Lecture Outlne: Prmal-dual schema Network Desgn:

More information

Fuzzy Boundaries of Sample Selection Model

Fuzzy Boundaries of Sample Selection Model Proceedngs of the 9th WSES Internatonal Conference on ppled Mathematcs, Istanbul, Turkey, May 7-9, 006 (pp309-34) Fuzzy Boundares of Sample Selecton Model L. MUHMD SFIIH, NTON BDULBSH KMIL, M. T. BU OSMN

More information

The Synchronous 8th-Order Differential Attack on 12 Rounds of the Block Cipher HyRAL

The Synchronous 8th-Order Differential Attack on 12 Rounds of the Block Cipher HyRAL The Synchronous 8th-Order Dfferental Attack on 12 Rounds of the Block Cpher HyRAL Yasutaka Igarash, Sej Fukushma, and Tomohro Hachno Kagoshma Unversty, Kagoshma, Japan Emal: {garash, fukushma, hachno}@eee.kagoshma-u.ac.jp

More information

The lower and upper bounds on Perron root of nonnegative irreducible matrices

The lower and upper bounds on Perron root of nonnegative irreducible matrices Journal of Computatonal Appled Mathematcs 217 (2008) 259 267 wwwelsevercom/locate/cam The lower upper bounds on Perron root of nonnegatve rreducble matrces Guang-Xn Huang a,, Feng Yn b,keguo a a College

More information

CS47300: Web Information Search and Management

CS47300: Web Information Search and Management CS47300: Web Informaton Search and Management Probablstc Retreval Models Prof. Chrs Clfton 7 September 2018 Materal adapted from course created by Dr. Luo S, now leadng Albaba research group 14 Why probabltes

More information

Markov Chain Monte Carlo Lecture 6

Markov Chain Monte Carlo Lecture 6 where (x 1,..., x N ) X N, N s called the populaton sze, f(x) f (x) for at least one {1, 2,..., N}, and those dfferent from f(x) are called the tral dstrbutons n terms of mportance samplng. Dfferent ways

More information

EEE 241: Linear Systems

EEE 241: Linear Systems EEE : Lnear Systems Summary #: Backpropagaton BACKPROPAGATION The perceptron rule as well as the Wdrow Hoff learnng were desgned to tran sngle layer networks. They suffer from the same dsadvantage: they

More information

An Interactive Optimisation Tool for Allocation Problems

An Interactive Optimisation Tool for Allocation Problems An Interactve Optmsaton ool for Allocaton Problems Fredr Bonäs, Joam Westerlund and apo Westerlund Process Desgn Laboratory, Faculty of echnology, Åbo Aadem Unversty, uru 20500, Fnland hs paper presents

More information

Natural Language Processing and Information Retrieval

Natural Language Processing and Information Retrieval Natural Language Processng and Informaton Retreval Support Vector Machnes Alessandro Moschtt Department of nformaton and communcaton technology Unversty of Trento Emal: moschtt@ds.untn.t Summary Support

More information

Microwave Diversity Imaging Compression Using Bioinspired

Microwave Diversity Imaging Compression Using Bioinspired Mcrowave Dversty Imagng Compresson Usng Bonspred Neural Networks Youwe Yuan 1, Yong L 1, Wele Xu 1, Janghong Yu * 1 School of Computer Scence and Technology, Hangzhou Danz Unversty, Hangzhou, Zhejang,

More information

Complex Question Answering with ASQA at NTCIR 7 ACLIA

Complex Question Answering with ASQA at NTCIR 7 ACLIA Complex Queston Answerng wth ASQA at NTCIR 7 ACLIA Y-Hsun Lee 1, Cheng-We Lee 12, Cheng-Lung Sung 1, Mon-Tn Tzou 1, Chh-Chen Wang 1, Shh-Hung Lu 1, Cheng-We Shh 1, Pe-Yn Yang 1, Wen-Lan Hsu 1 1 Insttute

More information

Adaptive Consensus Control of Multi-Agent Systems with Large Uncertainty and Time Delays *

Adaptive Consensus Control of Multi-Agent Systems with Large Uncertainty and Time Delays * Journal of Robotcs, etworkng and Artfcal Lfe, Vol., o. (September 04), 5-9 Adaptve Consensus Control of Mult-Agent Systems wth Large Uncertanty and me Delays * L Lu School of Mechancal Engneerng Unversty

More information

Regulation No. 117 (Tyres rolling noise and wet grip adhesion) Proposal for amendments to ECE/TRANS/WP.29/GRB/2010/3

Regulation No. 117 (Tyres rolling noise and wet grip adhesion) Proposal for amendments to ECE/TRANS/WP.29/GRB/2010/3 Transmtted by the expert from France Informal Document No. GRB-51-14 (67 th GRB, 15 17 February 2010, agenda tem 7) Regulaton No. 117 (Tyres rollng nose and wet grp adheson) Proposal for amendments to

More information

Feature Selection in Multi-instance Learning

Feature Selection in Multi-instance Learning The Nnth Internatonal Symposum on Operatons Research and Its Applcatons (ISORA 10) Chengdu-Juzhagou, Chna, August 19 23, 2010 Copyrght 2010 ORSC & APORC, pp. 462 469 Feature Selecton n Mult-nstance Learnng

More information

A Network Intrusion Detection Method Based on Improved K-means Algorithm

A Network Intrusion Detection Method Based on Improved K-means Algorithm Advanced Scence and Technology Letters, pp.429-433 http://dx.do.org/10.14257/astl.2014.53.89 A Network Intruson Detecton Method Based on Improved K-means Algorthm Meng Gao 1,1, Nhong Wang 1, 1 Informaton

More information

Regularized Discriminant Analysis for Face Recognition

Regularized Discriminant Analysis for Face Recognition 1 Regularzed Dscrmnant Analyss for Face Recognton Itz Pma, Mayer Aladem Department of Electrcal and Computer Engneerng, Ben-Guron Unversty of the Negev P.O.Box 653, Beer-Sheva, 845, Israel. Abstract Ths

More information

Split alignment. Martin C. Frith April 13, 2012

Split alignment. Martin C. Frith April 13, 2012 Splt algnment Martn C. Frth Aprl 13, 2012 1 Introducton Ths document s about algnng a query sequence to a genome, allowng dfferent parts of the query to match dfferent parts of the genome. Here are some

More information

On the Repeating Group Finding Problem

On the Repeating Group Finding Problem The 9th Workshop on Combnatoral Mathematcs and Computaton Theory On the Repeatng Group Fndng Problem Bo-Ren Kung, Wen-Hsen Chen, R.C.T Lee Graduate Insttute of Informaton Technology and Management Takmng

More information

A Log-linear Block Transliteration Model based on Bi-Stream HMMs

A Log-linear Block Transliteration Model based on Bi-Stream HMMs A Log-lnear Block Translteraton Model based on B-Stream HMMs Bng Zhao, Nguyen Bach, Ian Lane, and Stephan Vogel {bzhao, nbach, anlane, vogel}@cs.cmu.edu Language Technologes Insttute School of Computer

More information

On the correction of the h-index for career length

On the correction of the h-index for career length 1 On the correcton of the h-ndex for career length by L. Egghe Unverstet Hasselt (UHasselt), Campus Depenbeek, Agoralaan, B-3590 Depenbeek, Belgum 1 and Unverstet Antwerpen (UA), IBW, Stadscampus, Venusstraat

More information

A New Scrambling Evaluation Scheme based on Spatial Distribution Entropy and Centroid Difference of Bit-plane

A New Scrambling Evaluation Scheme based on Spatial Distribution Entropy and Centroid Difference of Bit-plane A New Scramblng Evaluaton Scheme based on Spatal Dstrbuton Entropy and Centrod Dfference of Bt-plane Lang Zhao *, Avshek Adhkar Kouch Sakura * * Graduate School of Informaton Scence and Electrcal Engneerng,

More information

Boosting Statistical Word Alignment Using Labeled and Unlabeled Data

Boosting Statistical Word Alignment Using Labeled and Unlabeled Data Boostng Statstcal Word Algnent Usng Labeled and Unlabeled Data Hua Wu Hafeng Wang Zhany Lu Toshba (Chna) Research and Developent Center 5/F., Tower W2, Orental Plaza, No., East Chang An Ave., Dong Cheng

More information

The Minimum Universal Cost Flow in an Infeasible Flow Network

The Minimum Universal Cost Flow in an Infeasible Flow Network Journal of Scences, Islamc Republc of Iran 17(2): 175-180 (2006) Unversty of Tehran, ISSN 1016-1104 http://jscencesutacr The Mnmum Unversal Cost Flow n an Infeasble Flow Network H Saleh Fathabad * M Bagheran

More information

Difference Equations

Difference Equations Dfference Equatons c Jan Vrbk 1 Bascs Suppose a sequence of numbers, say a 0,a 1,a,a 3,... s defned by a certan general relatonshp between, say, three consecutve values of the sequence, e.g. a + +3a +1

More information

Computational Biology Lecture 8: Substitution matrices Saad Mneimneh

Computational Biology Lecture 8: Substitution matrices Saad Mneimneh Computatonal Bology Lecture 8: Substtuton matrces Saad Mnemneh As we have ntroduced last tme, smple scorng schemes lke + or a match, - or a msmatch and -2 or a gap are not justable bologcally, especally

More information

Pop-Click Noise Detection Using Inter-Frame Correlation for Improved Portable Auditory Sensing

Pop-Click Noise Detection Using Inter-Frame Correlation for Improved Portable Auditory Sensing Advanced Scence and Technology Letters, pp.164-168 http://dx.do.org/10.14257/astl.2013 Pop-Clc Nose Detecton Usng Inter-Frame Correlaton for Improved Portable Audtory Sensng Dong Yun Lee, Kwang Myung Jeon,

More information

Finding the Longest Similar Subsequence of Thumbprints for Intrusion Detection

Finding the Longest Similar Subsequence of Thumbprints for Intrusion Detection Fndng the Longest Smlar Subsequence of Thumbprnts for Intruson Detecton Mng D. Wan, Shou-Hsuan Stephen Huang, and Janhua Yang Department of Computer Scence, Unversty of Houston Houston, Texas, 77204, USA

More information

Statistics II Final Exam 26/6/18

Statistics II Final Exam 26/6/18 Statstcs II Fnal Exam 26/6/18 Academc Year 2017/18 Solutons Exam duraton: 2 h 30 mn 1. (3 ponts) A town hall s conductng a study to determne the amount of leftover food produced by the restaurants n the

More information

ACTM State Calculus Competition Saturday April 30, 2011

ACTM State Calculus Competition Saturday April 30, 2011 ACTM State Calculus Competton Saturday Aprl 30, 2011 ACTM State Calculus Competton Sprng 2011 Page 1 Instructons: For questons 1 through 25, mark the best answer choce on the answer sheet provde Afterward

More information

Randić Energy and Randić Estrada Index of a Graph

Randić Energy and Randić Estrada Index of a Graph EUROPEAN JOURNAL OF PURE AND APPLIED MATHEMATICS Vol. 5, No., 202, 88-96 ISSN 307-5543 www.ejpam.com SPECIAL ISSUE FOR THE INTERNATIONAL CONFERENCE ON APPLIED ANALYSIS AND ALGEBRA 29 JUNE -02JULY 20, ISTANBUL

More information

High resolution entropy stable scheme for shallow water equations

High resolution entropy stable scheme for shallow water equations Internatonal Symposum on Computers & Informatcs (ISCI 05) Hgh resoluton entropy stable scheme for shallow water equatons Xaohan Cheng,a, Yufeng Ne,b, Department of Appled Mathematcs, Northwestern Polytechncal

More information

Finding Primitive Roots Pseudo-Deterministically

Finding Primitive Roots Pseudo-Deterministically Electronc Colloquum on Computatonal Complexty, Report No 207 (205) Fndng Prmtve Roots Pseudo-Determnstcally Ofer Grossman December 22, 205 Abstract Pseudo-determnstc algorthms are randomzed search algorthms

More information

Probabilistic Structured Query Methods

Probabilistic Structured Query Methods Probablstc Structured Query Methods Kareem Darwsh Electrcal and Computer Engneerng Department and UMIACS Unversty of Maryland, College Park, MD 20742 {kareem,oard}@glue.umd.edu Douglas W. Oard College

More information

2E Pattern Recognition Solutions to Introduction to Pattern Recognition, Chapter 2: Bayesian pattern classification

2E Pattern Recognition Solutions to Introduction to Pattern Recognition, Chapter 2: Bayesian pattern classification E395 - Pattern Recognton Solutons to Introducton to Pattern Recognton, Chapter : Bayesan pattern classfcaton Preface Ths document s a soluton manual for selected exercses from Introducton to Pattern Recognton

More information

Lecture 10: May 6, 2013

Lecture 10: May 6, 2013 TTIC/CMSC 31150 Mathematcal Toolkt Sprng 013 Madhur Tulsan Lecture 10: May 6, 013 Scrbe: Wenje Luo In today s lecture, we manly talked about random walk on graphs and ntroduce the concept of graph expander,

More information

EGR 544 Communication Theory

EGR 544 Communication Theory EGR 544 Communcaton Theory. Informaton Sources Z. Alyazcoglu Electrcal and Computer Engneerng Department Cal Poly Pomona Introducton Informaton Source x n Informaton sources Analog sources Dscrete sources

More information

NP-Completeness : Proofs

NP-Completeness : Proofs NP-Completeness : Proofs Proof Methods A method to show a decson problem Π NP-complete s as follows. (1) Show Π NP. (2) Choose an NP-complete problem Π. (3) Show Π Π. A method to show an optmzaton problem

More information

Supporting Information

Supporting Information Supportng Informaton The neural network f n Eq. 1 s gven by: f x l = ReLU W atom x l + b atom, 2 where ReLU s the element-wse rectfed lnear unt, 21.e., ReLUx = max0, x, W atom R d d s the weght matrx to

More information

Lecture 3: Shannon s Theorem

Lecture 3: Shannon s Theorem CSE 533: Error-Correctng Codes (Autumn 006 Lecture 3: Shannon s Theorem October 9, 006 Lecturer: Venkatesan Guruswam Scrbe: Wdad Machmouch 1 Communcaton Model The communcaton model we are usng conssts

More information

Problem Set 9 Solutions

Problem Set 9 Solutions Desgn and Analyss of Algorthms May 4, 2015 Massachusetts Insttute of Technology 6.046J/18.410J Profs. Erk Demane, Srn Devadas, and Nancy Lynch Problem Set 9 Solutons Problem Set 9 Solutons Ths problem

More information

Foundations of Arithmetic

Foundations of Arithmetic Foundatons of Arthmetc Notaton We shall denote the sum and product of numbers n the usual notaton as a 2 + a 2 + a 3 + + a = a, a 1 a 2 a 3 a = a The notaton a b means a dvdes b,.e. ac = b where c s an

More information

Efficient, General Point Cloud Registration with Kernel Feature Maps

Efficient, General Point Cloud Registration with Kernel Feature Maps Effcent, General Pont Cloud Regstraton wth Kernel Feature Maps Hanchen Xong, Sandor Szedmak, Justus Pater Insttute of Computer Scence Unversty of Innsbruck 30 May 2013 Hanchen Xong (Un.Innsbruck) 3D Regstraton

More information

Extracting Pronunciation-translated Names from Chinese Texts using Bootstrapping Approach

Extracting Pronunciation-translated Names from Chinese Texts using Bootstrapping Approach Extractng Pronuncaton-translated Names from Chnese Texts usng Bootstrappng Approach Jng Xao School of Computng, Natonal Unversty of Sngapore xaojng@comp.nus.edu.sg Jmn Lu School of Computng, Natonal Unversty

More information

Search sequence databases 2 10/25/2016

Search sequence databases 2 10/25/2016 Search sequence databases 2 10/25/2016 The BLAST algorthms Ø BLAST fnds local matches between two sequences, called hgh scorng segment pars (HSPs). Step 1: Break down the query sequence and the database

More information

Multilayer Perceptron (MLP)

Multilayer Perceptron (MLP) Multlayer Perceptron (MLP) Seungjn Cho Department of Computer Scence and Engneerng Pohang Unversty of Scence and Technology 77 Cheongam-ro, Nam-gu, Pohang 37673, Korea seungjn@postech.ac.kr 1 / 20 Outlne

More information

MSU at ImageCLEF: Cross Language and Interactive Image Retrieval

MSU at ImageCLEF: Cross Language and Interactive Image Retrieval MSU at ImageCLEF: Cross Language and Interactve Image Retreval Vneet Bansal, Chen Zhang, Joyce Y. Cha, Rong Jn Department of Computer Scence and Engneerng, Mchgan State Unversty East Lansng, MI48824, U.S.A.

More information

A PROBABILITY-DRIVEN SEARCH ALGORITHM FOR SOLVING MULTI-OBJECTIVE OPTIMIZATION PROBLEMS

A PROBABILITY-DRIVEN SEARCH ALGORITHM FOR SOLVING MULTI-OBJECTIVE OPTIMIZATION PROBLEMS HCMC Unversty of Pedagogy Thong Nguyen Huu et al. A PROBABILITY-DRIVEN SEARCH ALGORITHM FOR SOLVING MULTI-OBJECTIVE OPTIMIZATION PROBLEMS Thong Nguyen Huu and Hao Tran Van Department of mathematcs-nformaton,

More information

Probabilistic Structured Query Methods

Probabilistic Structured Query Methods Probablstc Structured Query Methods Kareem Darwsh and Douglas W. Oard 1 Insttute for Advanced Computer Studes Unversty of Maryland, College Park, MD 20742 {kareem,oard}@glue.umd.edu ABSTRACT Structured

More information

Valuated Binary Tree: A New Approach in Study of Integers

Valuated Binary Tree: A New Approach in Study of Integers Internatonal Journal of Scentfc Innovatve Mathematcal Research (IJSIMR) Volume 4, Issue 3, March 6, PP 63-67 ISS 347-37X (Prnt) & ISS 347-34 (Onlne) wwwarcournalsorg Valuated Bnary Tree: A ew Approach

More information

Statistical Inference. 2.3 Summary Statistics Measures of Center and Spread. parameters ( population characteristics )

Statistical Inference. 2.3 Summary Statistics Measures of Center and Spread. parameters ( population characteristics ) Ismor Fscher, 8//008 Stat 54 / -8.3 Summary Statstcs Measures of Center and Spread Dstrbuton of dscrete contnuous POPULATION Random Varable, numercal True center =??? True spread =???? parameters ( populaton

More information

A Fast Computer Aided Design Method for Filters

A Fast Computer Aided Design Method for Filters 2017 Asa-Pacfc Engneerng and Technology Conference (APETC 2017) ISBN: 978-1-60595-443-1 A Fast Computer Aded Desgn Method for Flters Gang L ABSTRACT *Ths paper presents a fast computer aded desgn method

More information

Evaluation of Validation Metrics. O. Polach Final Meeting Frankfurt am Main, September 27, 2013

Evaluation of Validation Metrics. O. Polach Final Meeting Frankfurt am Main, September 27, 2013 Evaluaton of Valdaton Metrcs O. Polach Fnal Meetng Frankfurt am Man, September 7, 013 Contents What s Valdaton Metrcs? Valdaton Metrcs evaluated n DynoTRAIN WP5 Drawbacks of Valdaton Metrcs Conclusons

More information

CS 3710: Visual Recognition Classification and Detection. Adriana Kovashka Department of Computer Science January 13, 2015

CS 3710: Visual Recognition Classification and Detection. Adriana Kovashka Department of Computer Science January 13, 2015 CS 3710: Vsual Recognton Classfcaton and Detecton Adrana Kovashka Department of Computer Scence January 13, 2015 Plan for Today Vsual recognton bascs part 2: Classfcaton and detecton Adrana s research

More information

Hashing. Alexandra Stefan

Hashing. Alexandra Stefan Hashng Alexandra Stefan 1 Hash tables Tables Drect access table (or key-ndex table): key => ndex Hash table: key => hash value => ndex Man components Hash functon Collson resoluton Dfferent keys mapped

More information

Keyword Reduction for Text Categorization using Neighborhood Rough Sets

Keyword Reduction for Text Categorization using Neighborhood Rough Sets IJCSI Internatonal Journal of Computer Scence Issues, Volume 1, Issue 1, No, January 015 ISSN (rnt): 1694-0814 ISSN (Onlne): 1694-0784 www.ijcsi.org Keyword Reducton for Text Categorzaton usng Neghborhood

More information

Generalized Linear Methods

Generalized Linear Methods Generalzed Lnear Methods 1 Introducton In the Ensemble Methods the general dea s that usng a combnaton of several weak learner one could make a better learner. More formally, assume that we have a set

More information

CHALMERS, GÖTEBORGS UNIVERSITET. SOLUTIONS to RE-EXAM for ARTIFICIAL NEURAL NETWORKS. COURSE CODES: FFR 135, FIM 720 GU, PhD

CHALMERS, GÖTEBORGS UNIVERSITET. SOLUTIONS to RE-EXAM for ARTIFICIAL NEURAL NETWORKS. COURSE CODES: FFR 135, FIM 720 GU, PhD CHALMERS, GÖTEBORGS UNIVERSITET SOLUTIONS to RE-EXAM for ARTIFICIAL NEURAL NETWORKS COURSE CODES: FFR 35, FIM 72 GU, PhD Tme: Place: Teachers: Allowed materal: Not allowed: January 2, 28, at 8 3 2 3 SB

More information

Lecture 4: November 17, Part 1 Single Buffer Management

Lecture 4: November 17, Part 1 Single Buffer Management Lecturer: Ad Rosén Algorthms for the anagement of Networs Fall 2003-2004 Lecture 4: November 7, 2003 Scrbe: Guy Grebla Part Sngle Buffer anagement In the prevous lecture we taled about the Combned Input

More information

The Order Relation and Trace Inequalities for. Hermitian Operators

The Order Relation and Trace Inequalities for. Hermitian Operators Internatonal Mathematcal Forum, Vol 3, 08, no, 507-57 HIKARI Ltd, wwwm-hkarcom https://doorg/0988/mf088055 The Order Relaton and Trace Inequaltes for Hermtan Operators Y Huang School of Informaton Scence

More information

REAL-TIME DETERMINATION OF INDOOR CONTAMINANT SOURCE LOCATION AND STRENGTH, PART II: WITH TWO SENSORS. Beijing , China,

REAL-TIME DETERMINATION OF INDOOR CONTAMINANT SOURCE LOCATION AND STRENGTH, PART II: WITH TWO SENSORS. Beijing , China, REAL-TIME DETERMIATIO OF IDOOR COTAMIAT SOURCE LOCATIO AD STREGTH, PART II: WITH TWO SESORS Hao Ca,, Xantng L, Wedng Long 3 Department of Buldng Scence, School of Archtecture, Tsnghua Unversty Bejng 84,

More information

Introduction to Information Theory, Data Compression,

Introduction to Information Theory, Data Compression, Introducton to Informaton Theory, Data Compresson, Codng Mehd Ibm Brahm, Laura Mnkova Aprl 5, 208 Ths s the augmented transcrpt of a lecture gven by Luc Devroye on the 3th of March 208 for a Data Structures

More information

Simultaneous Optimization of Berth Allocation, Quay Crane Assignment and Quay Crane Scheduling Problems in Container Terminals

Simultaneous Optimization of Berth Allocation, Quay Crane Assignment and Quay Crane Scheduling Problems in Container Terminals Smultaneous Optmzaton of Berth Allocaton, Quay Crane Assgnment and Quay Crane Schedulng Problems n Contaner Termnals Necat Aras, Yavuz Türkoğulları, Z. Caner Taşkın, Kuban Altınel Abstract In ths work,

More information

Combining Examinations to Accelerate Timetable Construction

Combining Examinations to Accelerate Timetable Construction Combnng Examnatons to Accelerate Tmetable Constructon Graham Kendall Jawe L School of Computer Scence, Unversty of Nottngham, UK {gxk wl}@cs.nott.ac.uk Abstract: In ths paper we propose a novel approach

More information

arxiv:cs.cv/ Jun 2000

arxiv:cs.cv/ Jun 2000 Correlaton over Decomposed Sgnals: A Non-Lnear Approach to Fast and Effectve Sequences Comparson Lucano da Fontoura Costa arxv:cs.cv/0006040 28 Jun 2000 Cybernetc Vson Research Group IFSC Unversty of São

More information

Lab 2e Thermal System Response and Effective Heat Transfer Coefficient

Lab 2e Thermal System Response and Effective Heat Transfer Coefficient 58:080 Expermental Engneerng 1 OBJECTIVE Lab 2e Thermal System Response and Effectve Heat Transfer Coeffcent Warnng: though the experment has educatonal objectves (to learn about bolng heat transfer, etc.),

More information

A new construction of 3-separable matrices via an improved decoding of Macula s construction

A new construction of 3-separable matrices via an improved decoding of Macula s construction Dscrete Optmzaton 5 008 700 704 Contents lsts avalable at ScenceDrect Dscrete Optmzaton journal homepage: wwwelsevercom/locate/dsopt A new constructon of 3-separable matrces va an mproved decodng of Macula

More information

Aggregation of Social Networks by Divisive Clustering Method

Aggregation of Social Networks by Divisive Clustering Method ggregaton of Socal Networks by Dvsve Clusterng Method mne Louat and Yves Lechaveller INRI Pars-Rocquencourt Rocquencourt, France {lzennyr.da_slva, Yves.Lechevaller, Fabrce.Ross}@nra.fr HCSD Beng October

More information