Download presentation
Presentation is loading. Please wait.
Published byAugusta Darleen Willis Modified over 9 years ago
1
Hsin-Hsi Chen1-1 Chapter 1 Introduction Hsin-Hsi Chen (陳信希) 國立台灣大學資訊程學系
2
Hsin-Hsi Chen1-2 Motivation Information retrieval –Representation, Storage, Organization, Access –To retrieve information which might be useful or relevant to the user Information need (vs query) –Find all the pages containing information on college tennis teams which (1) are maintained by an university in the USA and (2) participate in the NCAA tennis tournament. To be relevant, the page must include information on the national ranking of the team in the last three years and the email or phone number of the team coach.
3
Hsin-Hsi Chen1-3 Information versus Data Retrieval Data retrieval –Determine which documents of a collection contain the keywords in the user query –Retrieve all objects which satisfy clearly defined conditions in regular expression or relational algebra expression –Data has a well defined structure and semantics –Solution to the user of a database system Information retrieval
4
Hsin-Hsi Chen1-4 Database Management A specified set of attributes is used to characterize each item. EMPLOYEE(NAME, SSN, BDATE, ADDR, SEX, SALARY, DNO) Exact match between the attributes used in query formulations and those attached to the record. SELECT BDATE, ADDR FROM EMPLOYEE WHERE NAME = ‘John Smith’
5
Hsin-Hsi Chen1-5 Basic Concepts Content identifiers (keywords, index terms, descriptors) characterize the stored texts. degrees of coincidence between the sets of identifiers attached to queries and documents content analysis query formulation User task Logical view of the documents
6
Hsin-Hsi Chen1-6 The User Task Convey the semantics of information need Retrieval and browsing Retrieval Browsing Database
7
Hsin-Hsi Chen1-7 Logical View of Documents Full text representation A set of index terms –Elimination of stop-words –The use of stemming –The identification of noun groups –…
8
Hsin-Hsi Chen1-8 From full text to a set of index terms document structure recognition text+ structure accents, spacing, etc. stopwords noun groups stemming automatic or manual indexing structure text full text index terms
9
Hsin-Hsi Chen1-9 Indexing indexing: assign identifiers to text items. assign: manual vs. automatic indexing identifiers: –objective vs. nonobjective text identifiers cataloging rules define, e.g., author names, publisher names, dates of publications, … –controlled vs. uncontrolled vocabularies instruction manuals, terminological schedules, … –single-term vs. term phrase
10
Hsin-Hsi Chen1-10 The retrieval process User Interface Text Operations Query Operations Searching Ranking Indexing Index DB Manager Module Text Database Text logical view user need user feedback query retrieved documents ranked documents
11
Hsin-Hsi Chen1-11 Information Retrieval generic information retrieval system select and return to the user desired documents from a large set of documents in accordance with criteria specified by the user functions –document search the selection of documents from an existing collection of documents –document routing the dissemination of incoming documents to appropriate users on the basis of user interest profiles
12
Hsin-Hsi Chen1-12 Detection Need Definition a set of criteria specified by the user which describes the kind of information desired. –queries in document search task –profiles in routing task forms –keywords –keywords with Boolean operators –free text –example documents –...
13
Hsin-Hsi Chen1-13 Example Tipster Topic Description Number: 033 Domain: Science and Technology Topic: Companies Capable of Producing Document Management Description: Document must identify a company who has the capability to produce document management system by obtaining a turnkey- system or by obtaining and integrating the basic components. Narrative: To be relevant, the document must identify a turnkey document management system or components which could be integrated to form a document management system and the name of either the company developing the system or the company using the system. These components are: a computer, image scanner or optical character recognition system, and an information retrieval or text management system.
14
Hsin-Hsi Chen1-14 Example (Continued) Concepts: 1. document management, document processing, office automation electronic imaging 2. image scanner, optical character recognition (OCR) 3. text management, text retrieval, text database 4. optical disk Factors: Definitions Document Management-The creation, storage and retrieval of documents containing, text, images, and graphics. Image Scanner-A device that converts a printed image into a video image, without recognizing the actual content of the text or pictures. Optical Disk-A disk that is written and read by light, and are sometimes associated with the storage of digital images because of their high storage capacity.
15
Hsin-Hsi Chen1-15 search vs. routing The search process matches a single Detection Need against the stored corpus to return a subset of documents. Routing matches a single document against a group of Profiles to determine which users are interested in the document. Profiles stand long-term expressions of user needs. Search queries are ad hoc in nature. A generic detection architecture can be used for both the search and routing.
16
Hsin-Hsi Chen1-16 Search retrieval of desired documents from an existing corpus Retrospective search is frequently interactive. Methods –indexing the corpus by keyword, stem and/or phrase –apply statistical and/or learning techniques to better understand the content of the corpus –analyze free text Detection Needs to compare with the indexed corpus or a single document –...
17
Hsin-Hsi Chen1-17 Document Detection: Search
18
Hsin-Hsi Chen1-18 Document Detection: Search (Continued) Document Corpus –the content of the corpus may have significant the performance in some applications Preprocessing of Document Corpus –stemming –a list of stop words –phrases, multi-term items –...
19
Hsin-Hsi Chen1-19 Document Detection: Search (Continued) Building Index from Stems –key place for optimizing run-time performance –cost to build the index for a large corpus Document Index –a list of terms, stems, phrases, etc. –frequency of terms in the document and corpus –frequency of the co-occurrence of terms within the corpus –index may be as large as the original document corpus
20
Hsin-Hsi Chen1-20 Document Detection: Search (Continued) Detection Need –the user’s criteria for a relevant document Convert Detection Need to System Specific Query –first transformed into a detection query, and then a retrieval query. –detection query: specific to the retrieval engine, but independent of the corpus –retrieval query: specific to the retrieval engine, and to the corpus
21
Hsin-Hsi Chen1-21 Document Detection: Search (Continued) Compare Query with Index Resultant Rank Ordered List of Documents –Return the top ‘N’ documents –Rank the list of relevant documents from the most relevant to the query to the least relevant
22
Hsin-Hsi Chen1-22 Routing
23
Hsin-Hsi Chen1-23 Routing (Continued) Profile of Multiple Detection Needs –A Profile is a group of individual Detection Needs that describes a user’s areas of interest. –All Profiles will be compared to each incoming document (via the Profile index). –If a document matches a Profile the user is notified about the existence of a relevant document.
24
Hsin-Hsi Chen1-24 Routing (Continued) Convert Detection Need to System Specific Query Building Index from Queries –similar to build the corpus index for searching –the quantify of source data (Profiles) is usually much less than a document corpus –Profiles may have more specific, structured data in the form of SGML tagged fields
25
Hsin-Hsi Chen1-25 Routing (Continued) Routing Profile Index –The index will be system specific and will make use of all the preprocessing techniques employed by a particular detection system. Document to be routed –A stream of incoming documents is handled one at a time to determine where each should be directed. –Routing implementation may handle multiple document streams and multiple Profiles.
26
Hsin-Hsi Chen1-26 Routing (Continued) Preprocessing of Document –A document is preprocessed in the same manner that a query would be set-up in a search –The document and query roles are reversed compared with the search process Compare Document with Index –Identify which Profiles are relevant to the document –Given a document, which of the indexed profiles match it?
27
Hsin-Hsi Chen1-27 Routing (Continued) Resultant List of Profiles –The list of Profiles identify which user should receive the document
28
Hsin-Hsi Chen1-28 Summary Generate a representation of the meaning or content of each object based on its description. Generate a representation of the meaning of the information need. Compare these two representations to select those objects that are most likely to match the information need.
29
Hsin-Hsi Chen1-29 DocumentsQueries Document Representation Query Representation Comparison Basic Architecture of an Information Retrieval System
30
Hsin-Hsi Chen1-30 Research Issues Given a set of description for objects in the collection and a description of an information need, we must consider Issue 1 –What makes a good document representation? –What are retrievable units and how are they organized? –How can a representation be generated from a description of the document?
31
Hsin-Hsi Chen1-31 Research Issues (Continued) Issue 2 How can we represent the information need and how can we acquire this representation either from a description of the information need or through interaction with the user? Issue 3 How can we compare representations to judge likelihood that a document matches an information need?
32
Hsin-Hsi Chen1-32 Research Issues (Continued) Issue 4 How can we evaluate the effectiveness of the retrieval process?
33
Hsin-Hsi Chen1-33 Information Extraction Generic Information Extraction System An information extraction system is a cascade of transducers or modules that at each step add structure and often lose information, hopefully irrelevant, by applying rules that are acquired manually and/or automatically.
34
Hsin-Hsi Chen1-34 Information Extraction (Continued) What are the transducers or modules? What are their input and output? What structure is added? What information is lost? What is the form of the rules? How are the rules applied? How are the rules acquired?
35
Hsin-Hsi Chen1-35 Example: Parser transducer: parser input: the sequence of words or lexical items output: a parse tree information added: predicate-argument and modification relations information lost: no rule form: unification grammars application method: chart parser acquisition method: manually
36
Hsin-Hsi Chen1-36 Modules Text Zoner turn a text into a set of text segments Preprocessor turn a text or text segment into a sequence of sentences, each of which is a sequence of lexical items, where a lexical item is a word together with its lexical attributes Filter turn a set of sentences into a smaller set of sentences by filtering out the irrelevant ones Preparser take a sequence of lexical items and try to identify various reliably determinable, small-scale structures
37
Hsin-Hsi Chen1-37 Modules (Continued) Parser input a sequence of lexical items and perhaps small-scale structures (phrases) and output a set of parse tree fragments, possibly complete Fragment Combiner turn a set of parse tree or logical form fragments into a parse tree or logical form for the whole sentence Semantic Interpreter generate a semantic structure or logical form from a parse tree or from parse tree fragments
38
Hsin-Hsi Chen1-38 Modules (Continued) Lexical Disambiguation turn a semantic structure with general or ambiguous predicates into a semantic structure with specific, unambiguous predicates Coreference Resolution, or Discourse Processing turn a tree-like structure into a network-like structure by identifying different descriptions of the same entity in different parts of the text Template Generator derive the templates from the semantic structures
39
Hsin-Hsi Chen1-39 Topics Introduction to Information Retrieval and Extraction Modeling Retrieval Evaluation Query Languages Query Operations Text and Multimedia Languages and Properties Text Operations Indexing and Searching
40
Hsin-Hsi Chen1-40 Topics (Continued) User Interfaces and Visualization Multimedia IR: Models and Languages Multimedia IR: Indexing and Searching Searching the Web Digital Libraries Information Extraction (Jerry R. Hobbs)
41
Hsin-Hsi Chen1-41 Text IR Retrieval Models and Evaluation Improvements On Retrieval Efficient Processing Interfaces & Visualization Multimedia Modeling & Searching Human-Computer Interaction for IR Multimedia IR Applications for IR Bibliographic Systems The Web Digital Libraries
42
Hsin-Hsi Chen1-42 Information Sources Books –Ricardo Baeza-Yates and Berthier Riberiro-Neto (1999) Modern Information Retrieval, Addison-Wesley. –Salton, G. (1989) Automatic Text Processing. The Transformation, Analysis and Retrieval of Information by Computer. Reading, MA: Addison-Wesley. –Frakes, W.B. and Baeza-Yates, R. (Eds.) (1992) Information Retrieval: Data Structures and Algorithms. Englewood Cliffs, NJ: Prentice Hall. –Cheong, F. (1996) Internet Agents: Spiders, Wanderers, Brokers, and Bots. Indianapolis, IN: New Riders, 1996. –Karen Sparck Jones and Peter Willett (1997) Readings in Information Retrieval, CA: Morgan Kaufmann Publishers.
43
Hsin-Hsi Chen1-43 Information Sources Conference Proceedings –ACM SIGIR Annual International Conference on Research and Development in Information Retrieval (1978-) –ACM International Conference on Digital Libraries –ACM Conference on Information Knowledge Management –Text Retrieval Conference
44
Hsin-Hsi Chen1-44 Information Sources (Continued) Journals –ACM Transactions on Information Systems –Information Processing and Management (formerly Information Storage and Retrieval) –Journal of the American Society for Information Science (formerly American Documentation) –Journal of Documentation –Information Systems –Information Retrieval –Knowledge and Information Systems
Similar presentations
© 2025 SlidePlayer.com Inc.
All rights reserved.