Improving the Quality of Information Retrieval Using Syntactic Analysis of Search Query

Size: px
Start display at page:

Download "Improving the Quality of Information Retrieval Using Syntactic Analysis of Search Query"

Transcription

1 Improvng the Qualty of Informaton Retreval Usng Syntactc Analyss of Search Query Nadezhda Yarushkna 1[ ], Aleksey Flppov 1[ ], and Mara Grgorcheva 1[ ] 1 Ulyanovsk State Techncal Unversty, Ulyanovsk, Sev. Venec str., 32, , Russa jng@ulstu.ru, al.flppov@ulstu.ru, gms4295@mal.ru Abstract. The paper descrbes the methods for lngustc analyss of search queres to mprove the qualty of nformaton retreval. The descrpton of the parse tree n the form of a structure contanng nformaton about two or more related words wth the ndcaton of ther parts of speech and locaton n the orgnal request s used to the translaton of search query n Elastcsearch Query DSL. Elastcsearch Query DSL has several dsadvantages: the user may not know the features of Elastcsearch Query DSL, words joned by the OR operator s usng by default n nformaton retreval. The usng of the OR operator unnecessarly ncreases the recall and reduces the precson of nformaton retreval. Takng nto account the features of Elastcsearch Query DSL and the nformaton needs of the user allow to mprove the qualty of nformaton retreval. Keywords: Informaton Retreval, Syntactc Analyss, Search Queres. 1 Introducton Informaton retreval s the process of searchng n an extensve collecton of data some sem-structured (unstructured) materal (document) that satsfes the nformaton needs of the user. Sem-structured data s data that does not have a clear, semantcally notceable and easly dstngushable structure. Sem-structured data s the opposte of structured data. The canoncal example of structured data s relatonal databases. Relatonal databases are typcally used by enterprses to store product regsters, employee personal data, etc [1,2,3]. The qualty of search n nformaton retreval systems s usually characterzed by two crtera: recall and precson. The total count of found documents determnes the recall. The rato between the determnes the precson found relevant documents and the total count of documents [2,3]. The qualty of the search s affected by both the characterstcs of the nformaton retreval system tself and the qualty of the search query. An deal search query can be formed by a user who knows well the doman area. Also, to form an deal query, the user needs to know the features of current nformaton retreval system and ther

2 2 nformaton retreval query language. Otherwse, the search result wll have the low precson or low recall values [1,2,3]. 2 Man problem To nformaton retreval, the user formulates a search query. The search query s a formalzed way of expressng the nformaton needs of nformaton retreval system users. Informaton retreval query language s used for the expresson of nformaton needs. The syntax of nformaton retreval query language vares from system to system. Modern nformaton retreval systems allow enterng a query n natural language n addton to an nformaton retreval query language [1]. Informaton retreval system fnds documents contanng the specfed keywords or words that are n any way related to the keywords based on the user search query. The result of the nformaton retreval system s a lst of documents, sorted by relevance [2,3]. In ths paper wll consder the work of the proposed method on the example of the nformaton retreval system Elastcsearch [4]. Elastcsearch provdes a full Query DSL [5]. The query strng s parsed nto a seres of terms and operators. A term can be a sngle word quck or brown or a phrase, surrounded by double quotes quck brown whch searches for all the words n the phrase, n the same order. Operators allow to customze the search: 1. By default, all terms are optonal, as long as one term matches. A search for foo bar baz wll fnd any document that contans one or more of foo or bar or baz. The preferred operators are + (ths term must be present) and - (ths term must not be present). All other terms are optonal. For example, ths query: quck brown +fox news states that: fox must be present; news must not be present; quck and brown are optonal ther presence ncreases the relevance. 2. Multple terms or clauses can be grouped together wth parentheses, to form subqueres: (quck OR brown) AND fox. Therefore, the Elastcsearch search algorthm has several dsadvantages: 1. The user may not know the features of Elastcsearch Query DSL. 2. Words joned by the OR operator are used by default n nformaton retreval. The usng of the OR operator unnecessarly ncreases the recall of nformaton retreval and reduces ts precson. It s necessary to develop a method of lngustc analyss and translaton of a search query nto a search query n a format of Elastcsearch Query DSL. The new format of

3 3 search query allows to take nto account the features of Elastcsearch Query DSL and mprove the qualty ndcators (precson and recall) of nformaton retreval. 3 The method of Lngustc Analyss of Search Query for Improvng Qualty of Informaton Retreval The prmary goal of the developed method of lngustc analyss and translaton of a search query nto a search query n a format of Elastcsearch Query DSL s the mprovement of nformaton retreval qualty. The man task s to select n the search query the groups of terms, unted by some semantcs. 3.1 The method of lngustc analyss and translaton of a search query The scheme of lngustc analyss of texts does not depend on the natural language tself. Regardless of the language of the source text, ts analyss goes through the same stages [6,7]: 1. Splttng the text nto separate sentences. 2. Splttng the text nto separate words. 3. Morphologcal analyss. 4. Syntactc analyss. 5. Semantc analyss. The frst two stages are the same for most natural languages. Language-specfc dfferences usually appear n the processng of word abbrevatons, and n the processng of punctuaton marks to determne the end of a sentence. The results of the syntactc analyss are used to select n the search query the groups of terms, unted by some semantcs. To dentfy a noun phrase from a query dentfcaton of mportant query terms s necessary. It s also necessary to defne the relatonshp between the terms of the query. A noun phrase or nomnal phrase s a phrase that has a noun (or ndefnte proper noun) as ts head or performs the same grammatcal functon as such a phrase. Noun phrases are ubqutous crosslngustcally, and they may be the most frequently occurrng phrase type. SyntaxNet as an mplementaton of the syntactc analyss process s used. SyntaxNet s a TensorFlow-based syntax defnton framework that uses a neural network. Currently, 40 languages ncludng Russan are supported. The source code of the already-traned Parsey McParseface neural network model that s sutable for parsng text s publshed For TensorFlow. The man task of SyntaxNet s to make computer systems able to read and understand human language. The precson of the model traned n the SnTagRus case s estmated at 87.44% for the LAS metrc (Label Attachment Score), 91.68% for the UAS metrc (Unlabeled Attachment Score) and determnes the part of speech and the grammatcal characterstcs of words wth an accuracy of 98.27% [8,9,10,11,12,13]. It s necessary to parse the search query to obtan a parse tree on the frst step of the algorthm. To obtan data about the search query structure, dependences between words and the types of these dependences the resultng parse tree wll be used.

4 4 The parse tree can be represented as the followng set: T t 1, t 2,, t k, (1) where k s a count of nodes n the parse tree; t s a node of the parse tree, can be descrbed as: t, w, m, c, 1, k, where s an ndex of the word n search query; w W, Ww 1, w2,, wk, W s a set of words of search query; m j M, M Noun, Propernoun, Verb, Adverb, Adjectve, Conjuncto n, Preposto n, Interjecton s a set of parts of speech for natural language; c s an ndex of the word n the search query, that depends to the -th word. Thus, the search query s converted nto a parse tree on the frst step of the algorthm. For each word n the search query the part of speech, ndex of ths word n the search query, and relatons wth other words of the search query are set. The descrpton of the parse tree n the form of a structure contanng nformaton about two or more related words wth the ndcaton of ther parts of speech and locaton n the orgnal request s used on the second step of the algorthm. In the process of analyss of the nput parse tree, the nodes that reflect the semantcs of ths query are selected. Search and translaton of selected nodes nto Elastcsearch Query DSL s executed usng a set of rules. The translaton process uses a set of rules. Rules are used to add specal characters from the Elastcsearch Query DSL to the words of the search query. Also, stop words are deleted from search query durng the translaton. The result of the algorthm s a new search query that takes nto account the semantcs of nformaton needs and features of the Elastcsearch Query DSL. Ths algorthm can be represented as the followng equaton: * F Query : T, R Q j, Query The nput parameters of the functon F are the parse tree of search query T (eq. * 1) and the set of rules R, and the result s a translated query Q. R n R R, R2,, s the set of rules for searchng elements n parse tree and 1 ther translaton n Elastcsearch Query DSL. Each rule can be represented as the followng expresson: * R p, t, t,, t Q, 1 2 m j where p s a rule prorty. The prorty of the rule determnes the order n whch the rules are appled to the search query. Thus, the prorty allows applyng the more complex rules to defne complex phrases frst. If the more complex rule dd not work, the rule wth a lower prorty s appled; t s k -th element of the rule that allows to selectng the node (nodes) of the parse k tree to process; m s a count of elements n the rule;

5 5 * Q j * Q, j 1, q s an element of translated query. Each element of a translated query contans the word or words of the orgnal search query escaped by a symbol from the set of Elastcsearch Query DSL operators. 3.2 Examples of rules for lngustc analyss and translaton of a search query The formal descrpton of the rule to search the noun phrase n the search query can be represented as follows: R 4,, w, Noun, c, 1, w, Adjectve,, noun_ phrase 2, w 2, Adjectve,,, d, w, Adjectve, ' ' w1 w2 wd w '', where d s a count of adjectves n the noun phrase. Extracton of noun phrase from the parse tree of the search query fnds one or more adjectve that subordnates to the current noun tree node. The result of ths rule s a noun phrase, escaped wth + at the begnnng and at the end. Each rule conssts of the two sdes: the left sde and the rght sde. The left sde s a template of a parse tree fragment. The rght sde s a strng template. The method extracts fragments of the parse tree, matched by the pattern n the left sde of the rule, and then converts them to the strngs escaped by the symbols of Elastcsearch Query DSL, fllng the strng template. The formal descrpton of the rule to search the related nouns n the search query can be represented as follows: R 3,, w, Noun, c, 1, w, Noun,, noun_ noun 2, w 2, Noun,,, d, w ' ' w1 w2 wd w '', where d s a count of nouns that related to -th noun. Extracton of related nouns from the parse tree of the search query fnds one or more noun that subordnates to the current noun tree node. The result of ths rule s a set of nouns, escaped wth + at the begnnng and at the end. The formal descrpton of the rule to search the proper noun that subordnates to the noun n the search query can be represented as follows: R 2,, w, Noun, c, 1, w, Proper noun,, noun_ proper_ noun 2, w 2, Proper noun,,, d, w , Noun, ' ' w w1 w2 wd ', where d s a count of proper nouns that related to -th noun. Extracton of proper nouns that subordnates to the noun from the parse tree of the search query fnd one or more proper noun that subordnates to the current noun tree node. The result of ths rule s a set of nouns, escaped wth + at the begnnng and at the end. The formal descrpton of the rule to search the proper noun n the search query can be represented as follows: 2 1, Proper noun,

6 6 R proper_ noun 2, w 2 1,, w, Proper noun, c, 1, w, Proper noun,,, d, w, Proper noun,,, Proper noun, ' ' w1 w2 wd w ', where d s a count of proper nouns that related to -th proper noun. Extracton of proper nouns from the parse tree of the search query fnds one or more proper noun that subordnates to the current proper noun tree node. The result of ths rule s a set of nouns, escaped wth + at the begnnng and at the end. The formal descrpton of the rule to search the sngle noun n the search query can be represented as follows: R,, w, Noun, c w sngle_noun As the man problem of the search subsystem of the SOM, users called the low qualty of the nformaton retreval. Ths rule has a lower prorty and s executed after the rules wth a hgher prorty have been skpped only. The rule allows fndng a node of parse tree wth a part of speech noun that s not assocated wth other nodes wth a part of speech noun, adjectve, or proper noun. The formal descrpton of the rule to search the verb n the search query can be represented as follows: R,, w, Verb, c w verb. 1 Ths rule has the hghest prorty and does not overlap wth any other rule. Ths rule allows fndng a node of the parse tree wth a part of speech verb. 4 Experments To test the method of lngustc analyss of search query proposed n ths study some experments were conducted. Fgure 1 shows the prmary form of applcaton for translaton of search query n Elastcsearch Query DSL. The control Orgnal Query s used to nput orgnal search query. The parse tree for orgnal search query wll be shown n table Search query formattng elements after pressng the button Prepare query. Each lne of ths table contans the name of the trggered rule and potental semantc group. Panel Translaton rules allows the user to select necessary rules for translaton the orgnal search query to query n a format of Elastcsearch DSL. The resultng search query wll be shown n control Search query n new format after pressng the button Format. In ths paper wll consder the work of the proposed method on the example of the exstng nformaton retreval subsystem of the system for opnon mnng n socal meda (SOM). The SOM conssts of the followng subsystems: 1. Subsystem for mportng data from external sources. Ths subsystem works mass meda stes. Mass meda loader retreves data from HTML pages of mass meda stes based on rules. The creaton of own rules for each mass meda s needed. The rule should contan a set of CSS-selectors. The ontology loader allows loadng ontologes n OWL or RDF format nto the data storage subsystem. Ontology s used for a descrpton of the features of the problem area.

7 7 2. The data storage subsystem provdes the representaton of nformaton extracted from mass meda n a unfed structure that s convenent for further processng. The data s stored n the context data sources, versons, etc. As database management systems are used: Elastcsearch for ndexng and retrevng data; MongoDB for storng data n JSON format; Neo4j for storng graphs of socal nteracton (socal graph) and ontology. 3. The data converter converts the data mported from mass meda nto an nternal SOM unfed structures. 4. The OWL/RDF-ontology translator translates ontology nto the graph representaton [14]. 5. The semantc analyss subsystem performs preprocessng of text resources. Also, ths subsystem performs statstcal and lngustc analyss of text resources. 6. The nformaton retreval subsystem fnds objects related to a specfc search query. In ths case, the search query can be semantcally extended usng an ontology. Fg. 1. The man form of applcaton for translaton of search query n Elastcsearch Query DSL. Posts and comments downloaded from mass meda stes ulpressa.ru, ulgrad.ru and mosaca.ru/ru/ul are used as the dataset. The collecton of documents s n Russan. The proposed rules are desgned for the Russan language. As the man problem of the search subsystem of SOM, users called the low qualty of nformaton retreval.

8 8 Thus, the precson ndcator of nformaton retreval s used to assess the qualty of the proposed method. The recall and F-measure values are not used because the data storage subsystem of SOM contans the large count of documents. Fgure 2 shows the parse tree for search query: Стоимость проезда на общественном транспорте в Ульяновске. For example, wll use the query Amount of fare n publc transport n Ulyanovsk n Englsh, whch s close n meanng and structure to the query n Russan. The nodes of the parse tree are the words of the search query. Each node s assgned a part of speech. Fg. 2. The parse tree for the search query Amount of fare n publc transport n Ulyanovsk. After work of the algorthm, the sgnfcant elements were found n the parse tree (fg. 3). In the resultng tree (fg. 3), the nodes labeled as a rule wth that they were found. Fg. 3. The result tree for the search query Amount of fare n publc transport n Ulyanovsk. Thus, after lngustc analyss and translaton the resultng search query for search query Amount of fare n publc transport n Ulyanovsk s + Amount fare + publc transport +Ulyanovsk. The precson value s calculated usng the followng expresson: a P, (2) b where a s a count of relevant documents n the search result; b s a total count of documents n the search result.

9 9 For search query O Q Amount of fare n publc transport n Ulyanovsk the count of relevant documents n the search result of the nformaton retreval s 8. The total O P Q of the nformaton retreval count of documents s Thus, the precson for search query Amount of fare n publc transport n Ulyanovsk s (eq. 2): O 8 P Q 0, T For search query Q + Amount fare + publc transport +Ulyanovsk translated from search query Amount of fare n publc transport n Ulyanovsk usng the proposed method the count of relevant documents n the search result of the nformaton T P Q of the retreval s 8. The total count of documents s 8. Thus, the precson nformaton retreval for search query + Amount fare + publc transport +Ulyanovsk s (eq. 2): P T 8 Q 1. 8 Thus, the usng of proposed method mprove the precson of nformaton retreval because of reducng the count of documents n the search result. 5 Concluson Elastcsearch Query DSL has several dsadvantages: 1. The user may not know the features of Elastcsearch Query DSL. 2. Words joned by the OR operator are used by default n nformaton retreval. The usng of the OR operator unnecessarly ncreases the recall and reduces the precson of nformaton retreval. A method of lngustc analyss and translaton of search query n Elastcsearch Query DSL allows mprovng the precson of nformaton retreval. The search query s converted nto a parse tree on the frst step of the algorthm. For each word n the search query the part of speech, ndex of ths word n the search query, and relatons wth other words of the search query are set. The descrpton of the parse tree n the form of a structure contanng nformaton about two or more related words wth the ndcaton of ther parts of speech and locaton n the orgnal request s used on the second step of the algorthm. The result of the algorthm s a new search query that takes nto account the semantcs of nformaton needs and features of the Elastcsearch Query DSL. Accordng to the results of 20 computatonal experments, we can conclude: the use of the proposed method allows to ncrease the precson of nformaton retreval by an average of 18 tmes. The proposed algorthm can be used wth any nformaton retreval system because t preprocessed the orgnal search query, but does not change the system parameters or logc of nformaton retreval. However, the method requres adaptaton to the features of the nformaton retreval query language of the current nformaton retreval system.

10 10 6 Acknowledgments The study was supported by: the Mnstry of Educaton and Scence of the Russan Federaton n the framework of the project No /4.6. Development of methods and means for automaton of producton and technologcalpreparaton of aggregateassembly arcraft producton n the condtons of a mult-product producton program; the Russan Foundaton for Basc Research (Grants No and ). References 1. Voorhees, E. M.: Natural language processng and nformaton retreval. In: Informaton Extracton, pp Sprnger, Berln, Hedelberg (1999) 2. Mannng C., Raghavan P., Schütze H.: Introducton to Informaton Retreval. Cambrdge Unversty Press. (2008) 3. Mwa M. The Past, Present and Future of Informaton Retreval: Toward a User-Centered Orentaton. Accessed 20 Oct Elastcsearch. Accessed 20 Oct Elastcsearch Query DSL /query-dsl-query-strng-query.html. Accessed 20 Oct SRILM - The SRI Language Modelng Toolkt. Accessed 20 Oct Mannng C., Schutze H.: Foundatons of Statstcal Language processng. In: The MIT Press. (1999) 8. Sboev A.G., Gudovskkh D.V., Ivanov I., Moloshnkov I.A., Rybka R.B., Voronna I.: Research of a Deep Learnng Neural Network Effectveness for a Morphologcal Parser of Russan Language. Accessed 20 Oct 2018 (2017) 9. Chang J., Seefred J., Taylor S., Brandner A. SyntaxNet: Google s Open-sourced Syntactc Parser. SyntaxNet.pdf. Accessed 20 Oct Petrov S. Announcng SyntaxNet: The World s Most Accurate Parser Goes Open Source. Accessed 20 Oct Wess D., Petrov S. An Upgrade to SyntaxNet, New Models and a Parsng Competton. Accessed 20 Oct Albert C., Orr D., Petrov S. Meet Parsey s Cousns: Syntax for 40 languages, plus new SyntaxNet capabltes. Accessed 20 Oct Eberle K. Natural Language Tools - Test and Comparson. Accessed 20 Oct 2018

11 14. Yarushkna N., Flppov A., Moshkn V.: Development of the Unfed Technologcal Platform for Constructng the Doman Knowledge Base Through the Context Analyss. In: Creatvty n Intellgent Technologes and Data Scence, pp (2017) 11

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task Proceedngs of NTCIR-6 Workshop Meetng, May 15-18, 2007, Tokyo, Japan Term Weghtng Classfcaton System Usng the Ch-square Statstc for the Classfcaton Subtask at NTCIR-6 Patent Retreval Task Kotaro Hashmoto

More information

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data A Fast Content-Based Multmeda Retreval Technque Usng Compressed Data Borko Furht and Pornvt Saksobhavvat NSF Multmeda Laboratory Florda Atlantc Unversty, Boca Raton, Florda 3343 ABSTRACT In ths paper,

More information

Classifier Selection Based on Data Complexity Measures *

Classifier Selection Based on Data Complexity Measures * Classfer Selecton Based on Data Complexty Measures * Edth Hernández-Reyes, J.A. Carrasco-Ochoa, and J.Fco. Martínez-Trndad Natonal Insttute for Astrophyscs, Optcs and Electroncs, Lus Enrque Erro No.1 Sta.

More information

Oracle Database: SQL and PL/SQL Fundamentals Certification Course

Oracle Database: SQL and PL/SQL Fundamentals Certification Course Oracle Database: SQL and PL/SQL Fundamentals Certfcaton Course 1 Duraton: 5 Days (30 hours) What you wll learn: Ths Oracle Database: SQL and PL/SQL Fundamentals tranng delvers the fundamentals of SQL and

More information

An Optimal Algorithm for Prufer Codes *

An Optimal Algorithm for Prufer Codes * J. Software Engneerng & Applcatons, 2009, 2: 111-115 do:10.4236/jsea.2009.22016 Publshed Onlne July 2009 (www.scrp.org/journal/jsea) An Optmal Algorthm for Prufer Codes * Xaodong Wang 1, 2, Le Wang 3,

More information

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance Tsnghua Unversty at TAC 2009: Summarzng Mult-documents by Informaton Dstance Chong Long, Mnle Huang, Xaoyan Zhu State Key Laboratory of Intellgent Technology and Systems, Tsnghua Natonal Laboratory for

More information

Cross-Language Information Retrieval

Cross-Language Information Retrieval Feature Artcle: Cross-Language Informaton Retreval 19 Cross-Language Informaton Retreval Jan-Yun Ne 1 Abstract A research group n Unversty of Montreal has worked on the problem of cross-language nformaton

More information

APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT

APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT 3. - 5. 5., Brno, Czech Republc, EU APPLICATION OF MULTIVARIATE LOSS FUNCTION FOR ASSESSMENT OF THE QUALITY OF TECHNOLOGICAL PROCESS MANAGEMENT Abstract Josef TOŠENOVSKÝ ) Lenka MONSPORTOVÁ ) Flp TOŠENOVSKÝ

More information

UB at GeoCLEF Department of Geography Abstract

UB at GeoCLEF Department of Geography   Abstract UB at GeoCLEF 2006 Mguel E. Ruz (1), Stuart Shapro (2), June Abbas (1), Slva B. Southwck (1) and Davd Mark (3) State Unversty of New York at Buffalo (1) Department of Lbrary and Informaton Studes (2) Department

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

Enhancement of Infrequent Purchased Product Recommendation Using Data Mining Techniques

Enhancement of Infrequent Purchased Product Recommendation Using Data Mining Techniques Enhancement of Infrequent Purchased Product Recommendaton Usng Data Mnng Technques Noraswalza Abdullah, Yue Xu, Shlomo Geva, and Mark Loo Dscplne of Computer Scence Faculty of Scence and Technology Queensland

More information

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur FEATURE EXTRACTION Dr. K.Vjayarekha Assocate Dean School of Electrcal and Electroncs Engneerng SASTRA Unversty, Thanjavur613 41 Jont Intatve of IITs and IISc Funded by MHRD Page 1 of 8 Table of Contents

More information

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide Lobachevsky State Unversty of Nzhn Novgorod Polyhedron Quck Start Gude Nzhn Novgorod 2016 Contents Specfcaton of Polyhedron software... 3 Theoretcal background... 4 1. Interface of Polyhedron... 6 1.1.

More information

Ontology Generator from Relational Database Based on Jena

Ontology Generator from Relational Database Based on Jena Computer and Informaton Scence Vol. 3, No. 2; May 2010 Ontology Generator from Relatonal Database Based on Jena Shufeng Zhou (Correspondng author) College of Mathematcs Scence, Laocheng Unversty No.34

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

Query Clustering Using a Hybrid Query Similarity Measure

Query Clustering Using a Hybrid Query Similarity Measure Query clusterng usng a hybrd query smlarty measure Fu. L., Goh, D.H., & Foo, S. (2004). WSEAS Transacton on Computers, 3(3), 700-705. Query Clusterng Usng a Hybrd Query Smlarty Measure Ln Fu, Don Hoe-Lan

More information

Parallelism for Nested Loops with Non-uniform and Flow Dependences

Parallelism for Nested Loops with Non-uniform and Flow Dependences Parallelsm for Nested Loops wth Non-unform and Flow Dependences Sam-Jn Jeong Dept. of Informaton & Communcaton Engneerng, Cheonan Unversty, 5, Anseo-dong, Cheonan, Chungnam, 330-80, Korea. seong@cheonan.ac.kr

More information

SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB

SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB V. Hotař, A. Hotař Techncal Unversty of Lberec, Department of Glass Producng Machnes and Robotcs, Department of Materal

More information

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS ARPN Journal of Engneerng and Appled Scences 006-017 Asan Research Publshng Network (ARPN). All rghts reserved. NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS Igor Grgoryev, Svetlana

More information

PRÉSENTATIONS DE PROJETS

PRÉSENTATIONS DE PROJETS PRÉSENTATIONS DE PROJETS Rex Onlne (V. Atanasu) What s Rex? Rex s an onlne browser for collectons of wrtten documents [1]. Asde ths core functon t has however many other applcatons that make t nterestng

More information

Description of NTU Approach to NTCIR3 Multilingual Information Retrieval

Description of NTU Approach to NTCIR3 Multilingual Information Retrieval Proceedngs of the Thrd NTCIR Workshop Descrpton of NTU Approach to NTCIR3 Multlngual Informaton Retreval Wen-Cheng Ln and Hsn-Hs Chen Department of Computer Scence and Informaton Engneerng Natonal Tawan

More information

Analysis of Continuous Beams in General

Analysis of Continuous Beams in General Analyss of Contnuous Beams n General Contnuous beams consdered here are prsmatc, rgdly connected to each beam segment and supported at varous ponts along the beam. onts are selected at ponts of support,

More information

Correlative features for the classification of textural images

Correlative features for the classification of textural images Correlatve features for the classfcaton of textural mages M A Turkova 1 and A V Gadel 1, 1 Samara Natonal Research Unversty, Moskovskoe Shosse 34, Samara, Russa, 443086 Image Processng Systems Insttute

More information

A Knowledge Management System for Organizing MEDLINE Database

A Knowledge Management System for Organizing MEDLINE Database A Knowledge Management System for Organzng MEDLINE Database Hyunk Km, Su-Shng Chen Computer and Informaton Scence Engneerng Department, Unversty of Florda, Ganesvlle, Florda 32611, USA Wth the exploson

More information

S1 Note. Basis functions.

S1 Note. Basis functions. S1 Note. Bass functons. Contents Types of bass functons...1 The Fourer bass...2 B-splne bass...3 Power and type I error rates wth dfferent numbers of bass functons...4 Table S1. Smulaton results of type

More information

VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES

VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES UbCC 2011, Volume 6, 5002981-x manuscrpts OPEN ACCES UbCC Journal ISSN 1992-8424 www.ubcc.org VISUAL SELECTION OF SURFACE FEATURES DURING THEIR GEOMETRIC SIMULATION WITH THE HELP OF COMPUTER TECHNOLOGIES

More information

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz Compler Desgn Sprng 2014 Regster Allocaton Sample Exercses and Solutons Prof. Pedro C. Dnz USC / Informaton Scences Insttute 4676 Admralty Way, Sute 1001 Marna del Rey, Calforna 90292 pedro@s.edu Regster

More information

Chapter 6 Programmng the fnte element method Inow turn to the man subject of ths book: The mplementaton of the fnte element algorthm n computer programs. In order to make my dscusson as straghtforward

More information

Virtual Machine Migration based on Trust Measurement of Computer Node

Virtual Machine Migration based on Trust Measurement of Computer Node Appled Mechancs and Materals Onlne: 2014-04-04 ISSN: 1662-7482, Vols. 536-537, pp 678-682 do:10.4028/www.scentfc.net/amm.536-537.678 2014 Trans Tech Publcatons, Swtzerland Vrtual Machne Mgraton based on

More information

Professional competences training path for an e-commerce major, based on the ISM method

Professional competences training path for an e-commerce major, based on the ISM method World Transactons on Engneerng and Technology Educaton Vol.14, No.4, 2016 2016 WIETE Professonal competences tranng path for an e-commerce maor, based on the ISM method Ru Wang, Pn Peng, L-gang Lu & Lng

More information

Background Removal in Image indexing and Retrieval

Background Removal in Image indexing and Retrieval Background Removal n Image ndexng and Retreval Y Lu and Hong Guo Department of Electrcal and Computer Engneerng The Unversty of Mchgan-Dearborn Dearborn Mchgan 4818-1491, U.S.A. Voce: 313-593-508, Fax:

More information

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data Malaysan Journal of Mathematcal Scences 11(S) Aprl : 35 46 (2017) Specal Issue: The 2nd Internatonal Conference and Workshop on Mathematcal Analyss (ICWOMA 2016) MALAYSIAN JOURNAL OF MATHEMATICAL SCIENCES

More information

TOWARDS ADVANCED DATA RETRIEVAL FROM LEARNING OBJECTS REPOSITORIES

TOWARDS ADVANCED DATA RETRIEVAL FROM LEARNING OBJECTS REPOSITORIES The Fourth Internatonal Conference on e-learnng (elearnng-03), 6-7 September 03, Belgrade, Serba TOWARDS ADVANCED DATA RETRIEVAL FROM LEARNING OBJECTS REPOSITORIES VALENTINA PAUNOVIĆ Belgrade Metropoltan

More information

Combining Multiple Resources, Evidence and Criteria for Genomic Information Retrieval

Combining Multiple Resources, Evidence and Criteria for Genomic Information Retrieval Combnng Multple Resources, Evdence and Crtera for Genomc Informaton Retreval Luo S 1, Je Lu 2 and Jame Callan 2 1 Department of Computer Scence, Purdue Unversty, West Lafayette, IN 47907, USA ls@cs.purdue.edu

More information

TECHNIQUE OF FORMATION HOMOGENEOUS SAMPLE SAME OBJECTS. Muradaliyev A.Z.

TECHNIQUE OF FORMATION HOMOGENEOUS SAMPLE SAME OBJECTS. Muradaliyev A.Z. TECHNIQUE OF FORMATION HOMOGENEOUS SAMPLE SAME OBJECTS Muradalyev AZ Azerbajan Scentfc-Research and Desgn-Prospectng Insttute of Energetc AZ1012, Ave HZardab-94 E-mal:aydn_murad@yahoocom Importance of

More information

Sequential search. Building Java Programs Chapter 13. Sequential search. Sequential search

Sequential search. Building Java Programs Chapter 13. Sequential search. Sequential search Sequental search Buldng Java Programs Chapter 13 Searchng and Sortng sequental search: Locates a target value n an array/lst by examnng each element from start to fnsh. How many elements wll t need to

More information

Available online at Available online at Advanced in Control Engineering and Information Science

Available online at   Available online at   Advanced in Control Engineering and Information Science Avalable onlne at wwwscencedrectcom Avalable onlne at wwwscencedrectcom Proceda Proceda Engneerng Engneerng 00 (2011) 15000 000 (2011) 1642 1646 Proceda Engneerng wwwelsevercom/locate/proceda Advanced

More information

Behavioral Model Extraction of Search Engines Used in an Intelligent Meta Search Engine

Behavioral Model Extraction of Search Engines Used in an Intelligent Meta Search Engine Behavoral Model Extracton of Search Engnes Used n an Intellgent Meta Search Engne AVEH AVOUSI Computer Department, Azad Unversty, Garmsar Branch BEHZAD MOSHIRI Electrcal and Computer department, Faculty

More information

News. Recap: While Loop Example. Reading. Recap: Do Loop Example. Recap: For Loop Example

News. Recap: While Loop Example. Reading. Recap: Do Loop Example. Recap: For Loop Example Unversty of Brtsh Columba CPSC, Intro to Computaton Jan-Apr Tamara Munzner News Assgnment correctons to ASCIIArtste.java posted defntely read WebCT bboards Arrays Lecture, Tue Feb based on sldes by Kurt

More information

A Unified Framework for Semantics and Feature Based Relevance Feedback in Image Retrieval Systems

A Unified Framework for Semantics and Feature Based Relevance Feedback in Image Retrieval Systems A Unfed Framework for Semantcs and Feature Based Relevance Feedback n Image Retreval Systems Ye Lu *, Chunhu Hu 2, Xngquan Zhu 3*, HongJang Zhang 2, Qang Yang * School of Computng Scence Smon Fraser Unversty

More information

SEMANTIC SEARCH OF INTERNET INFORMATION RESOURCES ON BASE OF ONTOLOGIES AND MULTILINGUISTIC THESAURUSES. Anatoly Gladun, Julia Rogushina

SEMANTIC SEARCH OF INTERNET INFORMATION RESOURCES ON BASE OF ONTOLOGIES AND MULTILINGUISTIC THESAURUSES. Anatoly Gladun, Julia Rogushina 48 SEMANTIC SEARCH OF INTERNET INFORMATION RESOURCES ON BASE OF ONTOLOGIES AND MULTILINGUISTIC THESAURUSES Anatoly Gladun, Jula Rogushna Abstract: the approaches to the analyss of varous nformaton resources

More information

Keyword-based Document Clustering

Keyword-based Document Clustering Keyword-based ocument lusterng Seung-Shk Kang School of omputer Scence Kookmn Unversty & AIrc hungnung-dong Songbuk-gu Seoul 36-72 Korea sskang@kookmn.ac.kr Abstract ocument clusterng s an aggregaton of

More information

A Clustering Algorithm for Chinese Adjectives and Nouns 1

A Clustering Algorithm for Chinese Adjectives and Nouns 1 Clusterng lgorthm for Chnese dectves and ouns Yang Wen, Chunfa Yuan, Changnng Huang 2 State Key aboratory of Intellgent Technology and System Deptartment of Computer Scence & Technology, Tsnghua Unversty,

More information

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision SLAM Summer School 2006 Practcal 2: SLAM usng Monocular Vson Javer Cvera, Unversty of Zaragoza Andrew J. Davson, Imperal College London J.M.M Montel, Unversty of Zaragoza. josemar@unzar.es, jcvera@unzar.es,

More information

Semantic Image Retrieval Using Region Based Inverted File

Semantic Image Retrieval Using Region Based Inverted File Semantc Image Retreval Usng Regon Based Inverted Fle Dengsheng Zhang, Md Monrul Islam, Guoun Lu and Jn Hou 2 Gppsland School of Informaton Technology, Monash Unversty Churchll, VIC 3842, Australa E-mal:

More information

On Some Entertaining Applications of the Concept of Set in Computer Science Course

On Some Entertaining Applications of the Concept of Set in Computer Science Course On Some Entertanng Applcatons of the Concept of Set n Computer Scence Course Krasmr Yordzhev *, Hrstna Kostadnova ** * Assocate Professor Krasmr Yordzhev, Ph.D., Faculty of Mathematcs and Natural Scences,

More information

An Approach in Coloring Semi-Regular Tilings on the Hyperbolic Plane

An Approach in Coloring Semi-Regular Tilings on the Hyperbolic Plane An Approach n Colorng Sem-Regular Tlngs on the Hyperbolc Plane Ma Louse Antonette N De Las Peñas, mlp@mathscmathadmueduph Glenn R Lago, glago@yahoocom Math Department, Ateneo de Manla Unversty, Loyola

More information

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms Course Introducton Course Topcs Exams, abs, Proects A quc loo at a few algorthms 1 Advanced Data Structures and Algorthms Descrpton: We are gong to dscuss algorthm complexty analyss, algorthm desgn technques

More information

ETAtouch RESTful Webservices

ETAtouch RESTful Webservices ETAtouch RESTful Webservces Verson 1.1 November 8, 2012 Contents 1 Introducton 3 2 The resource /user/ap 6 2.1 HTTP GET................................... 6 2.2 HTTP POST..................................

More information

A New Approach For the Ranking of Fuzzy Sets With Different Heights

A New Approach For the Ranking of Fuzzy Sets With Different Heights New pproach For the ankng of Fuzzy Sets Wth Dfferent Heghts Pushpnder Sngh School of Mathematcs Computer pplcatons Thapar Unversty, Patala-7 00 Inda pushpndersnl@gmalcom STCT ankng of fuzzy sets plays

More information

Cluster Analysis of Electrical Behavior

Cluster Analysis of Electrical Behavior Journal of Computer and Communcatons, 205, 3, 88-93 Publshed Onlne May 205 n ScRes. http://www.scrp.org/ournal/cc http://dx.do.org/0.4236/cc.205.350 Cluster Analyss of Electrcal Behavor Ln Lu Ln Lu, School

More information

ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE

ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE Yordzhev K., Kostadnova H. Інформаційні технології в освіті ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE Yordzhev K., Kostadnova H. Some aspects of programmng educaton

More information

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters Proper Choce of Data Used for the Estmaton of Datum Transformaton Parameters Hakan S. KUTOGLU, Turkey Key words: Coordnate systems; transformaton; estmaton, relablty. SUMMARY Advances n technologes and

More information

For instance, ; the five basic number-sets are increasingly more n A B & B A A = B (1)

For instance, ; the five basic number-sets are increasingly more n A B & B A A = B (1) Secton 1.2 Subsets and the Boolean operatons on sets If every element of the set A s an element of the set B, we say that A s a subset of B, or that A s contaned n B, or that B contans A, and we wrte A

More information

IP Camera Configuration Software Instruction Manual

IP Camera Configuration Software Instruction Manual IP Camera 9483 - Confguraton Software Instructon Manual VBD 612-4 (10.14) Dear Customer, Wth your purchase of ths IP Camera, you have chosen a qualty product manufactured by RADEMACHER. Thank you for the

More information

The Shortest Path of Touring Lines given in the Plane

The Shortest Path of Touring Lines given in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 262 The Open Cybernetcs & Systemcs Journal, 2015, 9, 262-267 The Shortest Path of Tourng Lnes gven n the Plane Open Access Ljuan Wang 1,2, Dandan He

More information

Querying by sketch geographical databases. Yu Han 1, a *

Querying by sketch geographical databases. Yu Han 1, a * 4th Internatonal Conference on Sensors, Measurement and Intellgent Materals (ICSMIM 2015) Queryng by sketch geographcal databases Yu Han 1, a * 1 Department of Basc Courses, Shenyang Insttute of Artllery,

More information

Classifying Acoustic Transient Signals Using Artificial Intelligence

Classifying Acoustic Transient Signals Using Artificial Intelligence Classfyng Acoustc Transent Sgnals Usng Artfcal Intellgence Steve Sutton, Unversty of North Carolna At Wlmngton (suttons@charter.net) Greg Huff, Unversty of North Carolna At Wlmngton (jgh7476@uncwl.edu)

More information

Learning the Kernel Parameters in Kernel Minimum Distance Classifier

Learning the Kernel Parameters in Kernel Minimum Distance Classifier Learnng the Kernel Parameters n Kernel Mnmum Dstance Classfer Daoqang Zhang 1,, Songcan Chen and Zh-Hua Zhou 1* 1 Natonal Laboratory for Novel Software Technology Nanjng Unversty, Nanjng 193, Chna Department

More information

FINDING IMPORTANT NODES IN SOCIAL NETWORKS BASED ON MODIFIED PAGERANK

FINDING IMPORTANT NODES IN SOCIAL NETWORKS BASED ON MODIFIED PAGERANK FINDING IMPORTANT NODES IN SOCIAL NETWORKS BASED ON MODIFIED PAGERANK L-qng Qu, Yong-quan Lang 2, Jng-Chen 3, 2 College of Informaton Scence and Technology, Shandong Unversty of Scence and Technology,

More information

Circuit Analysis I (ENGR 2405) Chapter 3 Method of Analysis Nodal(KCL) and Mesh(KVL)

Circuit Analysis I (ENGR 2405) Chapter 3 Method of Analysis Nodal(KCL) and Mesh(KVL) Crcut Analyss I (ENG 405) Chapter Method of Analyss Nodal(KCL) and Mesh(KVL) Nodal Analyss If nstead of focusng on the oltages of the crcut elements, one looks at the oltages at the nodes of the crcut,

More information

Hermite Splines in Lie Groups as Products of Geodesics

Hermite Splines in Lie Groups as Products of Geodesics Hermte Splnes n Le Groups as Products of Geodescs Ethan Eade Updated May 28, 2017 1 Introducton 1.1 Goal Ths document defnes a curve n the Le group G parametrzed by tme and by structural parameters n the

More information

Alignment Results of SOBOM for OAEI 2010

Alignment Results of SOBOM for OAEI 2010 Algnment Results of SOBOM for OAEI 2010 Pegang Xu, Yadong Wang, Lang Cheng, Tany Zang School of Computer Scence and Technology Harbn Insttute of Technology, Harbn, Chna pegang.xu@gmal.com, ydwang@ht.edu.cn,

More information

Model Research on the Optimized and Improved Design of Lucene Search Engine Based on Big Data

Model Research on the Optimized and Improved Design of Lucene Search Engine Based on Big Data Model Research on the Optmzed and Improved Desgn of Lucene Search Engne Based on Bg Data Shaoyu Lang 1, Syn Lang 2 1 Guangzhou Huashang Vocatonal College, Guangdong 511300, Chna 2 Guangdong Huashang Techncal

More information

A Resources Virtualization Approach Supporting Uniform Access to Heterogeneous Grid Resources 1

A Resources Virtualization Approach Supporting Uniform Access to Heterogeneous Grid Resources 1 A Resources Vrtualzaton Approach Supportng Unform Access to Heterogeneous Grd Resources 1 Cunhao Fang 1, Yaoxue Zhang 2, Song Cao 3 1 Tsnghua Natonal Labatory of Inforamaton Scence and Technology 2 Department

More information

Assembler. Building a Modern Computer From First Principles.

Assembler. Building a Modern Computer From First Principles. Assembler Buldng a Modern Computer From Frst Prncples www.nand2tetrs.org Elements of Computng Systems, Nsan & Schocken, MIT Press, www.nand2tetrs.org, Chapter 6: Assembler slde Where we are at: Human Thought

More information

Chinese Word Segmentation based on the Improved Particle Swarm Optimization Neural Networks

Chinese Word Segmentation based on the Improved Particle Swarm Optimization Neural Networks Chnese Word Segmentaton based on the Improved Partcle Swarm Optmzaton Neural Networks Ja He Computatonal Intellgence Laboratory School of Computer Scence and Engneerng, UESTC Chengdu, Chna Department of

More information

Needed Information to do Allocation

Needed Information to do Allocation Complexty n the Database Allocaton Desgn Must tae relatonshp between fragments nto account Cost of ntegrty enforcements Constrants on response-tme, storage, and processng capablty Needed Informaton to

More information

Data Preprocessing Based on Partially Supervised Learning Na Liu1,2, a, Guanglai Gao1,b, Guiping Liu2,c

Data Preprocessing Based on Partially Supervised Learning Na Liu1,2, a, Guanglai Gao1,b, Guiping Liu2,c 6th Internatonal Conference on Informaton Engneerng for Mechancs and Materals (ICIMM 2016) Data Preprocessng Based on Partally Supervsed Learnng Na Lu1,2, a, Guangla Gao1,b, Gupng Lu2,c 1 College of Computer

More information

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration Improvement of Spatal Resoluton Usng BlockMatchng Based Moton Estmaton and Frame Integraton Danya Suga and Takayuk Hamamoto Graduate School of Engneerng, Tokyo Unversty of Scence, 6-3-1, Nuku, Katsuska-ku,

More information

The Research of Support Vector Machine in Agricultural Data Classification

The Research of Support Vector Machine in Agricultural Data Classification The Research of Support Vector Machne n Agrcultural Data Classfcaton Le Sh, Qguo Duan, Xnmng Ma, Me Weng College of Informaton and Management Scence, HeNan Agrcultural Unversty, Zhengzhou 45000 Chna Zhengzhou

More information

Intrinsic Plagiarism Detection Using Character n-gram Profiles

Intrinsic Plagiarism Detection Using Character n-gram Profiles Intrnsc Plagarsm Detecton Usng Character n-gram Profles Efstathos Stamatatos Unversty of the Aegean 83200 - Karlovass, Samos, Greece stamatatos@aegean.gr Abstract: The task of ntrnsc plagarsm detecton

More information

Information Retrieval

Information Retrieval Anmol Bhasn abhasn[at]cedar.buffalo.edu Moht Devnan mdevnan[at]cse.buffalo.edu Sprng 2005 #$ "% &'" (! Informaton Retreval )" " * + %, ##$ + *--. / "#,0, #'",,,#$ ", # " /,,#,0 1"%,2 '",, Documents are

More information

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices Steps for Computng the Dssmlarty, Entropy, Herfndahl-Hrschman and Accessblty (Gravty wth Competton) Indces I. Dssmlarty Index Measurement: The followng formula can be used to measure the evenness between

More information

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields 17 th European Symposum on Computer Aded Process Engneerng ESCAPE17 V. Plesu and P.S. Agach (Edtors) 2007 Elsever B.V. All rghts reserved. 1 A mathematcal programmng approach to the analyss, desgn and

More information

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes

R s s f. m y s. SPH3UW Unit 7.3 Spherical Concave Mirrors Page 1 of 12. Notes SPH3UW Unt 7.3 Sphercal Concave Mrrors Page 1 of 1 Notes Physcs Tool box Concave Mrror If the reflectng surface takes place on the nner surface of the sphercal shape so that the centre of the mrror bulges

More information

Collaboratively Regularized Nearest Points for Set Based Recognition

Collaboratively Regularized Nearest Points for Set Based Recognition Academc Center for Computng and Meda Studes, Kyoto Unversty Collaboratvely Regularzed Nearest Ponts for Set Based Recognton Yang Wu, Mchhko Mnoh, Masayuk Mukunok Kyoto Unversty 9/1/013 BMVC 013 @ Brstol,

More information

Concurrent Apriori Data Mining Algorithms

Concurrent Apriori Data Mining Algorithms Concurrent Apror Data Mnng Algorthms Vassl Halatchev Department of Electrcal Engneerng and Computer Scence York Unversty, Toronto October 8, 2015 Outlne Why t s mportant Introducton to Assocaton Rule Mnng

More information

A Fuzzy Image Matching Algorithm with Linguistic Spatial Queries

A Fuzzy Image Matching Algorithm with Linguistic Spatial Queries Fuzzy Matchng lgorthm wth Lngustc Spatal Queres TZUNG-PEI HONG, SZU-PO WNG, TIEN-HIN WNG, EEN-HIN HIEN epartment of Electrcal Engneerng, Natonal Unversty of Kaohsung Insttute of Informaton Management,

More information

Machine Learning: Algorithms and Applications

Machine Learning: Algorithms and Applications 14/05/1 Machne Learnng: Algorthms and Applcatons Florano Zn Free Unversty of Bozen-Bolzano Faculty of Computer Scence Academc Year 011-01 Lecture 10: 14 May 01 Unsupervsed Learnng cont Sldes courtesy of

More information

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints Australan Journal of Basc and Appled Scences, 2(4): 1204-1208, 2008 ISSN 1991-8178 Sum of Lnear and Fractonal Multobjectve Programmng Problem under Fuzzy Rules Constrants 1 2 Sanjay Jan and Kalash Lachhwan

More information

Audio Content Classification Method Research Based on Two-step Strategy

Audio Content Classification Method Research Based on Two-step Strategy (IJACSA) Internatonal Journal of Advanced Computer Scence and Applcatons, Audo Content Classfcaton Method Research Based on Two-step Strategy Sume Lang Department of Computer Scence and Technology Chongqng

More information

BIN XIA et al: AN IMPROVED K-MEANS ALGORITHM BASED ON CLOUD PLATFORM FOR DATA MINING

BIN XIA et al: AN IMPROVED K-MEANS ALGORITHM BASED ON CLOUD PLATFORM FOR DATA MINING An Improved K-means Algorthm based on Cloud Platform for Data Mnng Bn Xa *, Yan Lu 2. School of nformaton and management scence, Henan Agrcultural Unversty, Zhengzhou, Henan 450002, P.R. Chna 2. College

More information

Determining the Optimal Bandwidth Based on Multi-criterion Fusion

Determining the Optimal Bandwidth Based on Multi-criterion Fusion Proceedngs of 01 4th Internatonal Conference on Machne Learnng and Computng IPCSIT vol. 5 (01) (01) IACSIT Press, Sngapore Determnng the Optmal Bandwdth Based on Mult-crteron Fuson Ha-L Lang 1+, Xan-Mn

More information

A CALCULATION METHOD OF DEEP WEB ENTITIES RECOGNITION

A CALCULATION METHOD OF DEEP WEB ENTITIES RECOGNITION A CALCULATION METHOD OF DEEP WEB ENTITIES RECOGNITION 1 FENG YONG, DANG XIAO-WAN, 3 XU HONG-YAN School of Informaton, Laonng Unversty, Shenyang Laonng E-mal: 1 fyxuhy@163.com, dangxaowan@163.com, 3 xuhongyan_lndx@163.com

More information

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures

A Novel Adaptive Descriptor Algorithm for Ternary Pattern Textures A Novel Adaptve Descrptor Algorthm for Ternary Pattern Textures Fahuan Hu 1,2, Guopng Lu 1 *, Zengwen Dong 1 1.School of Mechancal & Electrcal Engneerng, Nanchang Unversty, Nanchang, 330031, Chna; 2. School

More information

DYNAMIC NETWORK OF CONCEPTS FROM WEB-PUBLICATIONS

DYNAMIC NETWORK OF CONCEPTS FROM WEB-PUBLICATIONS DYNAMIC NETWORK OF CONCEPTS FROM WEB-PUBLICATIONS Lande D.V. (dwl@vst.net), IC «ELVISTI», NTUU «KPI» Snarsk A.A. (asnarsk@gmal.com), NTUU «KPI» The network, the nodes of whch are concepts (people's names,

More information

Study on Fuzzy Models of Wind Turbine Power Curve

Study on Fuzzy Models of Wind Turbine Power Curve Proceedngs of the 006 IASME/WSEAS Internatonal Conference on Energy & Envronmental Systems, Chalkda, Greece, May 8-0, 006 (pp-7) Study on Fuzzy Models of Wnd Turbne Power Curve SHU-CHEN WANG PEI-HWA HUANG

More information

Using Fuzzy Logic to Enhance the Large Size Remote Sensing Images

Using Fuzzy Logic to Enhance the Large Size Remote Sensing Images Internatonal Journal of Informaton and Electroncs Engneerng Vol. 5 No. 6 November 015 Usng Fuzzy Logc to Enhance the Large Sze Remote Sensng Images Trung Nguyen Tu Huy Ngo Hoang and Thoa Vu Van Abstract

More information

A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION

A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION 1 THE PUBLISHING HOUSE PROCEEDINGS OF THE ROMANIAN ACADEMY, Seres A, OF THE ROMANIAN ACADEMY Volume 4, Number 2/2003, pp.000-000 A PATTERN RECOGNITION APPROACH TO IMAGE SEGMENTATION Tudor BARBU Insttute

More information

CONCURRENT OPTIMIZATION OF MULTI RESPONCE QUALITY CHARACTERISTICS BASED ON TAGUCHI METHOD. Ümit Terzi*, Kasım Baynal

CONCURRENT OPTIMIZATION OF MULTI RESPONCE QUALITY CHARACTERISTICS BASED ON TAGUCHI METHOD. Ümit Terzi*, Kasım Baynal CONCURRENT OPTIMIZATION OF MUTI RESPONCE QUAITY CHARACTERISTICS BASED ON TAGUCHI METHOD Ümt Terz*, Kasım Baynal *Department of Industral Engneerng, Unversty of Kocael, Vnsan Campus, Kocael, Turkey +90

More information

MATHEMATICS FORM ONE SCHEME OF WORK 2004

MATHEMATICS FORM ONE SCHEME OF WORK 2004 MATHEMATICS FORM ONE SCHEME OF WORK 2004 WEEK TOPICS/SUBTOPICS LEARNING OBJECTIVES LEARNING OUTCOMES VALUES CREATIVE & CRITICAL THINKING 1 WHOLE NUMBER Students wll be able to: GENERICS 1 1.1 Concept of

More information

SHAPE RECOGNITION METHOD BASED ON THE k-nearest NEIGHBOR RULE

SHAPE RECOGNITION METHOD BASED ON THE k-nearest NEIGHBOR RULE SHAPE RECOGNITION METHOD BASED ON THE k-nearest NEIGHBOR RULE Dorna Purcaru Faculty of Automaton, Computers and Electroncs Unersty of Craoa 13 Al. I. Cuza Street, Craoa RO-1100 ROMANIA E-mal: dpurcaru@electroncs.uc.ro

More information

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization Problem efntons and Evaluaton Crtera for Computatonal Expensve Optmzaton B. Lu 1, Q. Chen and Q. Zhang 3, J. J. Lang 4, P. N. Suganthan, B. Y. Qu 6 1 epartment of Computng, Glyndwr Unversty, UK Faclty

More information

CMPS 10 Introduction to Computer Science Lecture Notes

CMPS 10 Introduction to Computer Science Lecture Notes CPS 0 Introducton to Computer Scence Lecture Notes Chapter : Algorthm Desgn How should we present algorthms? Natural languages lke Englsh, Spansh, or French whch are rch n nterpretaton and meanng are not

More information

DEVELOPMENT AND RESEARCH OF OPEN-LOOP MODELS THE SUBSYSTEM "PROCESSOR-MEMORY" OF MULTIPROCESSOR SYSTEMS ARCHITECTURES UMA, NUMA AND SUMA

DEVELOPMENT AND RESEARCH OF OPEN-LOOP MODELS THE SUBSYSTEM PROCESSOR-MEMORY OF MULTIPROCESSOR SYSTEMS ARCHITECTURES UMA, NUMA AND SUMA DEVELOPMENT AND RESEARCH OF OPEN-LOOP MODELS THE SUBSYSTEM "PROCESSOR-MEMORY" OF MULTIPROCESSOR SYSTEMS ARCHITECTURES UMA, NUMA AND SUMA A. I. Martyshkn Penza State Technologcal Unversty, Baydukov Proyezd

More information

Keywords - Wep page classification; bag of words model; topic model; hierarchical classification; Support Vector Machines

Keywords - Wep page classification; bag of words model; topic model; hierarchical classification; Support Vector Machines (IJCSIS) Internatonal Journal of Computer Scence and Informaton Securty, Herarchcal Web Page Classfcaton Based on a Topc Model and Neghborng Pages Integraton Wongkot Srura Phayung Meesad Choochart Haruechayasak

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier Some materal adapted from Mohamed Youns, UMBC CMSC 611 Spr 2003 course sldes Some materal adapted from Hennessy & Patterson / 2003 Elsever Scence Performance = 1 Executon tme Speedup = Performance (B)

More information

USING GRAPHING SKILLS

USING GRAPHING SKILLS Name: BOLOGY: Date: _ Class: USNG GRAPHNG SKLLS NTRODUCTON: Recorded data can be plotted on a graph. A graph s a pctoral representaton of nformaton recorded n a data table. t s used to show a relatonshp

More information

Smoothing Spline ANOVA for variable screening

Smoothing Spline ANOVA for variable screening Smoothng Splne ANOVA for varable screenng a useful tool for metamodels tranng and mult-objectve optmzaton L. Rcco, E. Rgon, A. Turco Outlne RSM Introducton Possble couplng Test case MOO MOO wth Game Theory

More information