Neural Approaches to Conversational Information Retrieval (The Information Retrieval Series)

Total Page:16

File Type:pdf, Size:1020Kb

Neural Approaches to Conversational Information Retrieval (The Information Retrieval Series) Recent Advances in Conversational Information Retrieval (CIR) - A review of neural approaches Jianfeng Gao, Chenyan Xiong, Paul Bennett Microsoft Research SIGIR 2020 July 26, 2020 (Xi’an, China) Outline • Part 1: Introduction • A short definition of CIR • Task-oriented dialog and Web search • Research tasks of CIR • Part 2: Conversational question answering (QA) methods • Part 3: Conversational search methods • Part 4: Overview of public and commercial systems Who should attend this tutorial? • Whoever wants to understand and develop modern CIR systems that • Can interact with users for information seeking via multi-turn dialogs • Can answer questions • Can help users search / look up information • Can help users with learning and investigation tasks • … • Focus on neural approaches in this tutorial • Hybrid approaches that combine classical AI methods and deep learning methods are widely used to build real-world systems A short definition of CIR • A Conversational Information Retrieval (CIR) system is • an information retrieval (IR) system with • a conversational interface which • allows users to interact with the system to seek information • via multi-turn conversations of natural language. • CIR is a task-oriented dialog system (aka. task-oriented bot) • Complete tasks (e.g., information seeking) via multi-turn conversations of natural language Classical task-oriented dialog system architecture Dialog Manager (DM) Find me a restaurant Language intent: get_restaurant Dialog state serving understanding food: chinese tracking Chinese food Web or words meaning state Database (APIs) Which area do you Language intent: ask_slot Policy prefer? generation slot: area (action selection) User-System interaction in task-oriented dialog • User: know (roughly) what she needs, but not what is available. • System: know what is available, but not what a user needs • dialog: a two-way process of knowing each other to make a deal A (multi-domain) dialog session DB State Belief State H: I am looking for a museum in the center of town. do you have any 1 suggestion? Belief state: { M: there are 6 museums in the centre of town . how about the Broughton ‘attraction’:{‘type’: ‘museum’, 2 ‘area’: ‘centre’} Attraction house gallery at 98 king street ? } 3 H: nice, can you tell me what is the phone number and address ? M: the phone number for the Broughton house gallery is 01223314960 and 4 they are located at 98 king street . H: ok thanks, can you recommend a restaurant in the same area serving Indian 5 food M: curry garden serves Indian food and is located in the centre . would you like 6 me to make a reservation ? 7 H: sure, please book a table for two people on thursday at 18:00 Restaurant Belief state: { M: ok , i have a table for 2 at 18:00 on Thursday . your reference number is 8 ‘restaurant’: {‘food’: ‘indian’, ‘area’: 1234567890 . is there anything else I can help you with ? ‘centre’}, ‘booking’: {‘day’: ‘Thursday’, 9 H: that's it, bye. ‘people’: ‘2’, ‘time’: ’18:00’}, ‘attraction’:{‘type’: ‘museum’, M: have a great time and please contact us if you need any further assistance . ‘area’: ‘centre’} 10 goodbye . } [Peng+20] User-system interaction in Web search • User: know (roughly) what she needs, but not what is available. • System: know what is available, but not what a user needs • Generally viewed as a one-way information seeking process • User plays a proactive role to iteratively • issue a query, • inspect search results, • reformulate the query • System plays a passive role to make search more effective • Autocomplete a query • Organize search results (SERP) • Suggest related queries System should interact with users more actively • How people search -- Information seeking • Information lookup – short search sessions; • Exploratory search based on a dynamic model, an iterative “sense-making” process where users learn as they search, and adjust their information needs as they see search results. • Effective information seeking requires interaction btw users and a system that explicitly models the interaction by • Tracking belief state (user intent) • Asking clarification questions • Providing recommendations • Using natural language as input/output [Hearst+11; Collins-Thompson+ 17; Bates 89] A long definition of CIR - the RRIMS properties • User Revealment: help users express their information needs • E.g., query suggestion, autocompletion • System Revealment: reveal to users what is available, what it can or cannot do • E.g., recommendation, SERP • Mixed Initiative: system and user both can take initiative (two-way conversation) • E.g., asking clarification questions • Memory: users can reference past statement • State tracking • Set Retrieval: system can reason about the utility of sets of complementary items • Task-oriented, contextual search or QA [Radlinski&Craswell 17] CIR research tasks (task-oriented dialog modules) • What we will cover in this tutorial • Conversational Query Understanding (LU, belief state tracking) • Conversational document ranking (database state tracking) • Learning to ask clarification questions (action select via dialog policy, LG) • Conversational leading suggestions (action select via dialog policy, LG) • Search result presentation (response generation, LG) • Early work on CIR [Croft’s keynote at SIGIR-19] • We start with conversational QA which is a sub-task of CIR Outline • Part 1: Introduction • Part 2: Conversational QA methods • Conversational QA over knowledge bases • Conversational QA over texts • Part 3: Conversational search methods • Part 4: Case study of commercial systems Conversational QA over Knowledge Bases • Knowledge bases and QAs • C-KBQA system architecture • Semantic parser • Dialog manager • Response generation • KBQA w/o semantic parser • Open benchmarks Knowledge bases • Relational databases • Entity-centric knowledge base • Q: what super-hero from Earth appeared first? • Knowledge Graph • Properties of billions of entities • Relations among them • (relation, subject, object) tuples • Freebase, FB Entity Graph, MS Satori, Google KG etc. • Q: what is Obama’s citizenship? • KGs work with paths while DBs work with sets [Iyyer+18; Gao+19] Question-Answer pairs • Simple questions • can be answered from a single tuple • Object? / Subject? / Relation? • Complex questions • requires reasoning over one or more tuples • Logical / quantitively / comparative • Sequential QA pairs • A sequence of related pairs • Ellipses, coreference, clarifications, etc. [Saha+18] C-KBQA system architecture Select Movie Where • Semantic Parser Find me the {direct = Bill Murray} Bill Murray’s Semantic Parser • map input + context to a semantic movie. representation (logic form) to • Query the KB Dialog state • Dialog manager KB • Maintain/update state of dialog tracker history (e.g., QA pairs, DB state) • Select next system action (e.g., ask clarification questions, answer) Dialog Policy Dialog Dialog Manager • Response generator (action selection) • Convert system action to natural language response When was it Response • KB search (Gao+19) released? Generator Dynamic Neural Semantic Parser (DynSP) • Given a question (dialog history) and a table • Q: “which superheroes came from Earth and first appeared after 2009?” • Generate a semantic parse (SQL-query) • A select statement (answer column) • Zero or more conditions, each contains • A condition column • An operator (=, >, <, argmax etc.) and arguments • Q: Select Character Where {Home World = “Earth”} & {First Appear > “2009”} • A: {Dragonwing, Harmonia} [Iyyer+18; Andreas+16; Yih+15] Model formulation • Parsing as a state-action search problem • A state 푆 is a complete or partial parse (action sequence) • An action 퐴 is an operation to extend a parse • Parsing searches an end state with the highest score • “which superheroes came from Earth and first Types of actions and the number of action instances appeared after 2009?” in each type. Numbers / datetimes are the mentions • (퐴1) Select-column Character discovered in the question. • (퐴2) Cond-column Home World • (퐴3) Op-Equal “Earth” • (퐴2) Cond-column First Appeared • (퐴5) Opt-GT “2009” Possible action transitions based on their types. Shaded circles are end states. [Iyyer+18; Andreas+16; Yih+15] How to score a state (parse)? • Beam search to find the highest-scored parse (end state) • 푉휃 푆푡 = 푉휃 푆푡−1 + 휋휃(푆푡−1, 퐴푡), 푉 푆0 = 0 • Policy function, 휋휃(푆, 퐴), • Scores an action given the current state • Parameterized using different neural networks, each for an action type • E.g., Select-column action is scored using the semantic similarity between question words (embedding vectors) and column name (embedding vectors) 1 σ 푇 • 푤푐∈푊푐 max 푤푞 푤푐 푊푐 푤푞∈푊푞 [Iyyer+18; Andreas+16; Yih+15] Model learning 푡 • State value function: 푉휃(푆푡) = σ푖=1 휋휃(푆푖−1, 퐴푖) • An E2E trainable, question-specific, neural network model • Weakly supervised learning setting • Question-answer pairs are available • Correct parse for each question is not available • Issue of delayed (sparse) reward • Reward is only available after we get a (complete) parse and the answer • Approximate (dense) reward • Check the overlap of the answers of a partial parse 퐴(푆) with the gold answers 퐴∗ 퐴 푆 ∩퐴∗ • 푅 푆 = 퐴 푆 ∪퐴∗ [Iyyer+18; Andreas+16; Yih+15] Parameter updates • Make the state value function 푉휃 behave similarly to reward 푅 • For every state 푆 and its (approximated) reference state 푆∗, we define loss as ∗ ∗ • ℒ 푆 = 푉휃 푆 − 푉휃 푆 − 푅 푆 − 푅 푆 • Improve learning efficiency by finding the most violated state 푆መ // labeled QA pair // Finds the best approximated
Recommended publications
  • Basic Concepts in Information Retrieval
    1 Basic concepts of information retrieval systems Introduction The term ‘information retrieval’ was coined in 1952 and gained popularity in the research community from 1961 onwards.1 At that time the organizing function of information retrieval was seen as a major advance in libraries that were no longer just storehouses of books, but also places where the information they hold is catalogued and indexed.2 Subsequently, with the introduction of computers in information handling, there appeared a number of databases containing bibliographic details of documents, often married with abstracts, keywords, and so on, and consequently the concept of information retrieval came to mean the retrieval of bibliographic information from stored document databases. Information retrieval is concerned with all the activities related to the organization of, processing of, and access to, information of all forms and formats. An information retrieval system allows people to communicate with an information system or service in order to find information – text, graphic images, sound recordings or video that meet their specific needs. Thus the objective of an information retrieval system is to enable users to find relevant information from an organized collection of documents. In fact, most information retrieval systems are, truly speaking, document retrieval systems, since they are designed to retrieve information about the existence (or non-existence) of documents relevant to a user query. Lancaster3 comments that an information retrieval system does not inform (change the knowledge of) the user on the subject of their enquiry; it merely informs them of the existence (or non-existence) and whereabouts of documents relating to their request.
    [Show full text]
  • The Seven Ages of Information Retrieval
    International Federation of Library Associations and Institutions UNIVERSAL DATAFLOW AND TELECOMMUNICATIONS CORE PROGRAMME OCCASIONAL PAPER 5 THE SEVEN AGES OF INFORMATION RETRIEVAL Michael Lesk Bellcore March, 1996 International Federation of Library Associations and Institutions UNIVERSAL DATAFLOW AND TELECOMMUNICATIONS CORE PROGRAMME The IFLA Core Programme on Universal Dataflow and Telecommunications (UDT) seeks to facilitate the international and national exchange of electronic data by providing the library community with pragmatic approaches to resource sharing. The programme monitors and promotes the use of relevant standards, promotes the use of relevant technologies and monitors relevant policy issues in an effort to overcome barriers to the electronic transfer of data in library fields. CONTACT INFORMATION Mailing Address: IFLA International Office for UDT c/o National Library of Canada 395 Wellington Street Ottawa, CANADA K1A 0N4 UDT Staff Contacts: Leigh Swain, Director Email: [email protected] Phone: (819) 994-6833 or Louise Lantaigne, Administration Officer Email: [email protected] Phone: (819) 994-6963 Fax: (819) 994-6835 Email: [email protected] URL: http://www.ifla.org/udt/ Occasional papers are available electronically at: http://www.ifla.org/udt/op/ UDT Occasional Papers # 5 Universal Dataflow and Telecommunications Core Programme International Federation of Library Associations and Institutions The Seven Ages of Information Retrieval Michael Lesk Bellcore [email protected] March, 1996 ABSTRACT analysis. This dates to a memo by Warren Weaver in 1949 [Weaver 1955] thinking about the success of Vannevar Bush's 1945 article set a goal of fast access computers in cryptography during the war, and to the contents of the world's libraries which looks suggesting that they could translate languages.
    [Show full text]
  • Information Retrieval (Text Categorization)
    Information Retrieval (Text Categorization) Fabio Aiolli http://www.math.unipd.it/~aiolli Dipartimento di Matematica Pura ed Applicata Università di Padova Anno Accademico 2008/2009 Dip. di Matematica F. Aiolli - Information Retrieval 1 Pura ed Applicata 2008/2009 Text Categorization Text categorization (TC - aka text classification) is the task of buiding text classifiers, i.e. sofware systems that classify documents from a domain D into a given, fixed set C = {c 1,…,c m} of categories (aka classes or labels) TC is an approximation task , in that we assume the existence of an ‘oracle’, a target function that specifies how docs ought to be classified. Since this oracle is unknown , the task consists in building a system that ‘approximates’ it Dip. di Matematica F. Aiolli - Information Retrieval 2 Pura ed Applicata 2008/2009 Text Categorization We will assume that categories are symbolic labels; in particular, the text constituting the label is not significant. No additional knowledge of category ‘meaning’ is available to help building the classifier The attribution of documents to categories should be realized on the basis of the content of the documents. Given that this is an inherently subjective notion, the membership of a document in a category cannot be determined with certainty Dip. di Matematica F. Aiolli - Information Retrieval 3 Pura ed Applicata 2008/2009 Single-label vs Multi-label TC TC comes in two different variants: Single-label TC (SL) when exactly one category should be assigned to a document The target function in the form f : D → C should be approximated by means of a classifier f’ : D → C Multi-label TC (ML) when any number {0,…,m} of categories can be assigned to each document The target function in the form f : D → P(C) should be approximated by means of a classifier f’ : D → P(C) We will often indicate a target function with the alternative notation f : D × C → {-1,+1} .
    [Show full text]
  • Information Retrieval System: Concept and Scope MODULE - 5B INFORMATION RETRIEVAL SYSTEM
    Information Retrieval System: Concept and Scope MODULE - 5B INFORMATION RETRIEVAL SYSTEM 15 Notes INFORMATION RETRIEVAL SYSTEM: CONCEPT AND SCOPE 15.1 INTRODUCTION Information is communicated or received knowledge concerning a particular fact or circumstance. Retrieval refers to searching through stored information to find information relevant to the task at hand. In view of this, information retrieval (IR) deals with the representation, storage, organization of/and access to information items. Here, types of information items include documents, Web pages, online catalogues, structured records, multimedia objects, etc. Chief goals of the IR are indexing text and searching for useful documents in a collection. Libraries were among the first institutions to adopt IR systems for retrieving information. In this lesson, you will be introduced to the importance, definitions and objectives of information retrieval. You will also study in detail the concept of subject approach to information, process of information retrieval, and indexing languages. 15.2 OBJECTIVES After studying this lesson, you will be able to: define information retrieval; understand the importance and need of information retrieval system; explain the concept of subject approach to information; LIBRARY AND INFORMATION SCIENCE 321 MODULE - 5B Information Retrieval System: Concept and Scope INFORMATION RETRIEVAL SYSTEM illustrate the process of information retrieval; and differentiate between natural, free and controlled indexing languages. 15.3 INFORMATION RETRIEVAL (IR) Notes The term ‘information retrieval’ was coined by Calvin Mooers in 1950. It gained popularity in the research community from 1961 onwards, when computers were introduced for information handling. The term information retrieval was then used to mean retrieval of bibliographic information from stored document databases.
    [Show full text]
  • A Philosophical Wish List for Research in Music Information Retrieval Cynthia M
    A Philosophical Wish List for Research in Music Information Retrieval Cynthia M. Grund Institute of Philosophy, Education and the Study of Religions - Philosophy University of Southern Denmark, Odense [email protected] Abstract what might otherwise seem utterly intractable questions. Within a framework provided by the traditional trio What insights could MIR-research provide into the consisting of metaphysics, epistemology and ethics, a first great questions of philosophy? The answer lies in the stab is made at a wish list for MIR-research from a particular facility which the tools of MIR possess for philosophical point of view. Since the tools of MIR are dealing with language as a sonic phenomenon, thus 1 equipped to study language and its use from a purely sonic providing yet another revolution in the linguistic turn. A standpoint, MIR research could result in another revealing search through the reams of literature produced regarding revolution within the linguistic turn in philosophy. the role of language in philosophical endeavor reveals that the language framework is virtually always a written one. Keywords: Philosophy and MIR, language as spoken, Little or no attention has been paid to the mechanisms at memory work in thinking, learning and communicating in a context 2 1. Introduction and Brief Setting of the Stage which is virtually of an exclusively oral, sonic. Since the overwhelming majority of time during which our thinking, Philosophy wrestles with questions regarding learning and communicative skills developed was metaphysics,
    [Show full text]
  • An Architecture for Information Retrieval Agents* Craig A
    From: AAAI Technical Report SS-94-03. Compilation copyright © 1994, AAAI (www.aaai.org). All rights reserved. An Architecture for Information Retrieval Agents* Craig A. Knoblock and Yigal Arens Information Sciences Institute University of Southern California 4676 Admiralty Way Marina del Rey, CA 90292, USA {KNOBLOCK,ARENS}QISI.ED Abstract sources that are available to it. Given an informa- tion request, an agent identifies an appropriate set of With the vast number of information resources information sources, generates a plan to retrieve and available today, a critical problem is howto lo- process the data, uses knowledge about the data to re- cate, retrieve and process information. It would formulate the plan, and then executes it. This paper be impractical to build a single unified system that describes our approach to the issues of representation, combines all of these information resources. A communication, problem solving, and learning, and de- more promising approach is to build specialized scribes how this approach supports multiple, collabo- information retrieval agents that provide access rating information retrieval agents. to a subset of the information resources and can send requests to other information retrieval agents Representing the Knowledge of an when needed. In this paper we present an archi- tecture for building such agents that addresses the Agent issues of representation, communication, problem Each information agent is specialized to a particular solving, and learning. Wealso describe how this area of expertise. This provides a modular organiza- architecture supports agents that are modular, ex- tion of the vast numberof information sources and pro- tensible, flexible and efficient, vides a clear delineation of the types of queries each agent can handle.
    [Show full text]
  • Semantic Information Retrieval Based on Wikipedia Taxonomy
    International Journal of Computer Applications Technology and Research Volume 2– Issue 1, 77-80, 2013, ISSN: 2319–8656 Semantic Information Retrieval based on Wikipedia Taxonomy May Sabai Han University of Technology Yatanarpon Cyber City Myanmar Abstract: Information retrieval is used to find a subset of relevant documents against a set of documents. Determining semantic similarity between two terms is a crucial problem in Web Mining for such applications as information retrieval systems and recommender systems. Semantic similarity refers to the sameness of two terms based on sameness of their meaning or their semantic contents. Recently many techniques have introduced measuring semantic similarity using Wikipedia, a free online encyclopedia. In this paper, a new technique of measuring semantic similarity is proposed. The proposed method uses Wikipedia as an ontology and spreading activation strategy to compute semantic similarity. The utility of the proposed system is evaluated by using the taxonomy of Wikipedia categories. Keywords: information retrieval; semantic similarity; spreading activation strategy; wikipedia taxonomy; wikipedia categories 1. INTRODUCTION fashion than a search engine and with more coverage than WordNet. And Wikipedia articles have been categorized by Information in WWW are scattered and diverse in nature. So, providing a taxonomy, categories. This feature provides the users frequently fail to describe the information desired. hierarchical structure or network. Wikipedia also provides Traditional search techniques are constrained by keyword articles link graph. So many researches has recently used based matching techniques. Hence low precision and recall is Wikipedia as an ontology to measure semantic similarity. obtained [2]. Many natural language processing applications must estimate the semantic similarity of pairs of text We propose a method to use structured knowledge extracted fragments provided as input, e.g.
    [Show full text]
  • Introduction to Information Retrieval
    DRAFT! © April 1, 2009 Cambridge University Press. Feedback welcome. 1 1 Boolean retrieval The meaning of the term information retrieval can be very broad. Just getting a credit card out of your wallet so that you can type in the card number is a form of information retrieval. However, as an academic field of study, INFORMATION information retrieval might be defined thus: RETRIEVAL Information retrieval (IR) is finding material (usually documents) of an unstructured nature (usually text) that satisfies an information need from within large collections (usually stored on computers). As defined in this way, information retrieval used to be an activity that only a few people engaged in: reference librarians, paralegals, and similar pro- fessional searchers. Now the world has changed, and hundreds of millions of people engage in information retrieval every day when they use a web search engine or search their email.1 Information retrieval is fast becoming the dominant form of information access, overtaking traditional database- style searching (the sort that is going on when a clerk says to you: “I’m sorry, I can only look up your order if you can give me your Order ID”). IR can also cover other kinds of data and information problems beyond that specified in the core definition above. The term “unstructured data” refers to data which does not have clear, semantically overt, easy-for-a-computer structure. It is the opposite of structured data, the canonical example of which is a relational database, of the sort companies usually use to main- tain product inventories and personnel records.
    [Show full text]
  • Linguistic Fingerprints of Internet Censorship: the Case of Sina Weibo
    Linguistic Fingerprints of Internet Censorship: the Case of Sina Weibo Kei Yin Ng, Anna Feldman, Jing Peng Montclair State University Montclair, New Jersey, USA Abstract trainings, seminars, and even study trips as well as advanced equipment. This paper studies how the linguistic components of blogposts collected from Sina Weibo, a Chinese mi- In this paper, we deal with a particular type of censorship croblogging platform, might affect the blogposts’ likeli- – when a post gets removed from a social media platform hood of being censored. Our results go along with King semi-automatically based on its content. We are interested in et al. (2013)’s Collective Action Potential (CAP) theory, exploring whether there are systematic linguistic differences which states that a blogpost’s potential of causing riot or between posts that get removed by censors from Sina Weibo, assembly in real life is the key determinant of it getting a Chinese microblogging platform, and the posts that remain censored. Although there is not a definitive measure of on the website. Sina Weibo was launched in 2009 and be- this construct, the linguistic features that we identify as came the most popular social media platform in China. Sina discriminatory go along with the CAP theory. We build Weibo has over 431 million monthly active users3. a classifier that significantly outperforms non-expert hu- mans in predicting whether a blogpost will be censored. In cooperation with the ruling regime, Weibo sets strict The crowdsourcing results suggest that while humans control over the content published under its service (Tager, tend to see censored blogposts as more controversial Bass, and Lopez 2018).
    [Show full text]
  • User Centered and Ontology Based Information Retrieval System for Life Sciences
    User Centered and Ontology Based Information Retrieval System for Life Sciences Sylvie Ranwez 1, Vincent Ranwez 2, Mohameth-François Sy 1, Jacky Montmain 1, Michel Crampes 1 1 LGI2P Research Centre, EMA/Site EERIE, Parc scientifique G. Besse, 30 035 Nîmes cedex 1, France [email protected] 2Laboratoire de Paléontologie, Phylogénie et Paléobiologie, Institut des Sciences de l’Evolution (UMR 5554 CNRS), Université Montpellier II, CC 064, 34 095 MONTPELLIER Cedex 05, France [email protected] Abstract. Because of the increasing number of electronic data, designing efficient tools to retrieve and exploit documents is a major challenge. Current search engines suffer from two main drawbacks: there is limited interaction with the list of retrieved documents and no explanation for their adequacy to the query. Users may thus be confused by the selection and have no idea how to adapt their query so that the results match their expectations. This paper describes a request method and an environment based on aggregating models to assess the relevance of documents annotated by concepts of ontology. The selection of documents is then displayed in a semantic map to provide graphical indications that make explicit to what extent they match the user’s query; this man/machine interface favors a more interactive exploration of data corpus. Keywords: Information Retrieval, Semantic Query, Visualization, Directed Acyclic Graph, Aggregation Operator. 1 Introduction As the number of electronic data grows it is crucial to profit from powerful tools to index and retrieve documents efficiently. This is particularly true in life sciences where new technologies, such as DNA chips a decade ago and Next Generation Sequencing today, sustain the exponential growth of available data.
    [Show full text]
  • The World Trade Law of Censorship and Internet Filtering
    Chicago Journal of International Law Volume 7 Number 1 Article 12 6-1-2006 The World Trade Law of Censorship and Internet Filtering Tim Wu Follow this and additional works at: https://chicagounbound.uchicago.edu/cjil Recommended Citation Wu, Tim (2006) "The World Trade Law of Censorship and Internet Filtering," Chicago Journal of International Law: Vol. 7: No. 1, Article 12. Available at: https://chicagounbound.uchicago.edu/cjil/vol7/iss1/12 This Article is brought to you for free and open access by Chicago Unbound. It has been accepted for inclusion in Chicago Journal of International Law by an authorized editor of Chicago Unbound. For more information, please contact [email protected]. The World Trade Law of Censorship and Internet Filtering Tim Wu* Consider the following events, all from the last five years: (1) An American newsmagazine, Barron's, posts an unflattering profile of an Australian billionaire named Joseph Gutnick on its web site-the publisher, Dow Jones, Inc., is sued in Australia and forced to settle; (2) Mexico's incumbent telephone company, Telmex, blocks Mexicans from reaching the web site of the Voice-over-IP firm Skype; (3) the United States begins a major crackdown on web gambling services, causing serious economic damage to several small Caribbean economies; (4) the Chinese government prevents its citizens from using various foreign Internet services, including foreign e-mail and certain foreign news sources, and requires foreign search engines and blog sites to filter unwelcome content; (5) France orders the American auction site Yahoo to take down its Nazi-glorifying paraphernalia. These disputes are well-known to those who study the Internet's international controversies.1 But not everyone realizes that these controversies are also forms of trade disputes, and, as such, no one yet fully understands how the law of the World Trade Organization ("WTO") might affect them.
    [Show full text]
  • A Review of Ontology-Based Information Retrieval Techniques on Generic Domains
    International Journal of Applied Information Systems (IJAIS) – ISSN : 2249-0868 Foundation of Computer Science FCS, New York, USA Volume 12 – No. 13, May 2018 – www.ijais.org A Review of Ontology-based Information Retrieval Techniques on Generic Domains Ishaq Oyebisi Oyefolahan Enesi Femi Aminu Muhammad Bashir Abdullahi Federal University of Technology, Federal University of Technology, Federal University of Technology, Minna, Nigeria Minna, Nigeria Minna, Nigeria Information & Media Technology Computer Science Department Computer Science Department Department Muhammadu Tajudeen Salaudeen Federal University of Technology, Minna, Nigeria Crop Production Department ABSTRACT attributed to the fact that the mechanism to retrieve relevant A promising evolution of the existing web where machine and results that satisfy user’s needs becomes a challenge as a people are in cooperation is the Semantic Web. That is, a result of word mismatch and short queries; in other words, machine’s represented and understandable web. This is ambiguous nature of the natural languages [1]. Thus, in order against the existing web which is syntactic in nature - where for the web to be meaningful both in terms of structure and meaning of query search and its expected results on the web is retrieving relevant information, the web must be understood mostly understood and interpreted by user not machine. and interpreted by both user and machine hence, the term However, the technologies drive behind this goal of semantic semantic web. web is on one hand ontologies and on the other hand information retrieval techniques. Ontology is a data modeling Semantic web is a promising evolution of the existing web technique for structured data repository premised on where machine and people are in cooperation [2].
    [Show full text]