Geotime Retrieval Through Passage-Based Learning to Rank ∗

Total Page:16

File Type:pdf, Size:1020Kb

Geotime Retrieval Through Passage-Based Learning to Rank ∗ Proceedings of NTCIR-9 Workshop Meeting, December 6-9, 2011, Tokyo, Japan GeoTime Retrieval through Passage-based Learning to Rank ∗ Xiao-Lin Wang1;2, Hai Zhao1;2, Bao-Liang Lu1;2y 1Center for Brain-Like Computing and Machine Intelligence Department of Computer Science and Engineering, Shanghai Jiao Tong University 2MOE-Microsoft Key Laboratory for Intelligent Computing and Intelligent Systems Shanghai Jiao Tong University 800 Dong Chuan Rd., Shanghai 200240, China [email protected], {zhaohai; blu}@cs.sjtu.edu.cn ABSTRACT search method processing geographic and temporal expres- The NTCIR-9 GeoTime task is to retrieve documents to an- sions may benefit a large number of users. The NTCIR-9 swer such questions as when and where certain events hap- GeoTime task provides researchers with a platform for test- pened. In this paper we propose a Passage-Based Learning ing such methods. to Rank (PGLR) method to address this task. The proposed The Center for Brain-like Computing and Machine Intelli- method recognizes texts both strongly related to the target gence, Shanghai Jiao Tong University (SJTU-BCMI) partic- topics and containing geographic and temporal expression- ipates in the NTCIR-9 GeoTime English subtask. We pro- s. The implemented system provides more accurate search pose a Passage-based GeoTime Learning to Rank method results than a system without PGLR. Performance, accord- (PGLR) to address this task. PGLR first evaluates the rele- ing to the official evaluation, is average among submitted vance and GeoTime informativeness of each passage in can- systems. didate documents, which are retrieved by a BM25F algo- rithm, and then re-ranks the documents according to the maximum score of their passages. Categories and Subject Descriptors This paper takes paragraphs as passages, and various meth- H.3.3 [Information Search and Retrieval]: Search pro- ods of feature extraction and ranking are applied. The un- cess derlying intuition is that a document could contain both query terms and GeoTime expressions without any seman- General Terms tic relation between them, and such a document would not be a correct answer for GeoTime Retrieval. On the other Algorithms, Performance, Experimentation hand, if the query terms and GeoTime expressions appear in the same passage, they are more likely to have a seman- Keywords tic relation. A document containing such a passage is more GeoTime Retrieval, BM25F, Learning to Rank likely to be a correct answer for GeoTime Retrieval. This paper describes our proposed method and discusses its evaluation results. The rest of the paper is organized as 1. INTRODUCTION follows: the system is presented in Sec. 2; then the submitted Queries that request geographic and temporal informa- runs are described and discussed in Sec. 3; finally this paper tion, such as \where and when did . happen?", are very in concluded in Sec. 4. common in information retrieval. Therefore, a customized ∗ This work was partially supported by the National Natural 2. SYSTEM DESCRIPTION Science Foundation of China (Grant No. 60903119, Grant No. 61170114 and Grant No. 90820018), the National Ba- The core of our system for NTCIR-9 GeoTime is to em- sic Research Program of China (Grant No. 2009CB320901), ploy a passage-based GeoTime Learning to Rank (PGLR) the Science and Technology Commission of Shanghai Munic- method to improve the relevance related to GeoTime re- ipality (Grant No. 09511502400), and the European Union trieval. Figure 1 presents its framework where PGLR is Seventh Framework Programme (Grant No. 247619). used as post processing after page retrieval and page rank. yCorresponding author The system works as follows: 1. Parse the GeoTime topics into query terms Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are 2. Find the top-N relevant documents by BM25F simi- not made or distributed for profit or commercial advantage and that copies larity; bear this notice and the full citation on the first page. To copy otherwise, to republish, to post on servers or to redistribute to lists, requires prior specific 3. Re-rank with the PGLR algorithm; permission and/or a fee. NTCIR-9 Workshop Meeting Tokyo, Japan. Copyright 2011 ACM X-XXXXX-XX-X/XX/XX ...$10.00. The following three subsections give details. ― 64 ― Proceedings of NTCIR-9 Workshop Meeting, December 6-9, 2011, Tokyo, Japan Query Unigrams, Bigrams, Dependancies GeoTime Query Parser Question Query Unigrams Passage-based BM25F Search Learning to Rank Articles Figure 1: Framework of SJTU-BCMI's system for NTCIR-9 GeoTime task 2.1 GeoTime Topic Parsing The representation of a GeoTime topic is normally a ques- X tf(t; d) · tion that starts with\when"and\where"noted as DESCRIP- BM25F (d; q) = idf(t) (1) 2 k1 + tf(t; d) TION, a small piece of narrowing description noted as NAR- Xt q RATIVE. In this step they are parsed into queries. Three tf(t; d) = wc ∗ tfc(t; d) (2) kinds of representations { unigram, bigram and dependency c2d { are employed in order to catch the semantics of a GeoTime occurc(t; d) tfc(t; d) = (3) topic. Tab. 1 gives four examples in NTCIR9-GeoTime. ld;c 1 − bc + bc The query unigrams, bigrams and dependencies are gen- lc erated according to the following rules : N − n(t) + 0:5 idf(t) = log (4) n(t) + 0:5 • Unigrams of DESCRIPTION(UoD) are the unigrams of the DESCRIPTION not in a customized stop word where d is a document, q is a query, t represents a word, c list. This list consists of common English stop words represents a field contained in d, occurc(t; d) is the number plus words with high frequency in GeoTime topics such of occurrences of t in c of d, ld;c is the length of c at d, lc is as \when" and \where". the average length of c, N is the number of documents, n(t) is the number of documents containing t, and k1,wc and bc • Bigrams of DESCRIPTION (BoD) are pairs of UoDs are parameters. tfc(t; d) is called the field term frequency which are neighbors, with stop words skipped. function, tf(t; d) is called the term frequency function, and idf(t) is called the inverse document frequency. • Dependencies of DESCRIPTION (DoD) are the re- In our system, the title and body of a document are taken sults of the Stanford parser 1 [3, 1] that have at least as the two fields in BM25F (please see Sec. 3 for details). one UoD. • Unigrams of NARRATIVE (UoN) are the unigram- 2.3 Passage-based GeoTime Learning to Rank s which appear in the bigrams and dependencies of (PGLR) NARRATIVE (BoN and DoN). The intuition of PGLR is that if a document has a small piece of text both strongly related to the GeoTime topic, • Bigrams of NARRATIVE (BoN) are those neighbor- and containing temporal and geographic expressions, this ing non-stop unigrams in NARRATIVE that have at document is highly likely to be a correct one. By observing least one UoD. many documents of real-world news, the unit of passage is taken as the granule for computation. • Dependencies of NARRATIVE (DoN) are those de- Learning to rank [7] is taken to evaluate the rightness pendencies in NARRATIVE that have at least one of each passage given a GeoTime Topic. The passages of UoD. previously retrieved documents are first converted to vector 2.2 Document Retrieval with BM25F representations based on a group of features; then a trained SVMrank [2] 4 predicts the rightness of these passages. In The document retrieval component is a modified Lucene the end the documents are re-ranked according to the max- search engine. Lucene is an open source search engine from imum rightness of their passages. the Apache Software Foundation 2. The default similarity The following nine features are used to represent passages. model of Lucene is a combination of a boolean model and a vector space model 3. We implemented the Standard B- • the document's BM25F score M25F similarity formula on Lucene [6, 9], and this slightly raises the accuracy according to our pilot experiments. • the TF·IDF similarity of DESCRIPTION's unigrams The implementation of BM25F follows Eq. 1 presented at • the TF·IDF similarity of DESCRIPTION's bigrams [4]. • the TF·IDF similarity of DESCRIPTION's dependen- 1http://nlp.stanford.edu/software/lex-parser.shtml cies 2http://lucene.apache.org/ 3http://lucene.apache.org/java/2_9_0/api/core/org/ 4http://www.cs.cornell.edu/people/tj/svm_light/ apache/lucene/search/Similarity.html svm_rank.html ― 65 ― Proceedings of NTCIR-9 Workshop Meeting, December 6-9, 2011, Tokyo, Japan Table 1: Examples of Parsing GeoTime Questions into Queries ID Topic Query unigram Query bigram Query dependency 26 (D)Where and when did the space space shuttle columbia space shuttle shuttle space shuttle Columbia disaster take disaster shuttle columbia disaster columbia place? columbia disaster shuttle disaster (N)The user wants to know when state space shuttle state space space shuttle columbia space and in what state the space shuttle columbia explode shuttle columbia columbia shuttle Columbia exploded. columbia explode explode columbia 27 (D)When was the last flight of last flight concorde land last flight flight concorde flight last flight concorde Concorde and where did it land? concorde land (N)The user wants to know when last time supersonic last time airliner concorde time last concorde supersonic was the last time that the airliner concorde fly city concorde fly city land concorde airliner fly concorde supersonic airliner Concorde flew land time land fly land and in what city it landed. 28 (D)When and where were the washington beltway washington beltway arrest washington Washington beltway snipers sniper arrest beltway sniper sniper arrest sniper beltway arrested? washington sniper (N)The user wants to know when state washington sniper state washington sniper state and in what state were the arrest kill washington sniper sniper washington Washington snipers arrested who sniper arrest arrest kill sniper arrest sniper kill killed ten people and critically injured three more.
Recommended publications
  • The Table Lens: Merging Graphical and Symbolic Representations in an Interactive Focus+ Context Visualization for Tabular Information
    HumanFac(orsinComputingSystems CHI’94 0 “Celebra/i//ghrferdepende)~cc” The Table Lens: Merging Graphical and Symbolic Representations in an Interactive Focus+ Context Visualization for Tabular Information Ramana Rao and Stuart K. Card Xerox Palo Alto Research Center 3333 Coyote Hill Road Palo Alto, CA 94304 Gao,carcM@parc. xerox.com ABSTRACT (at cell size of 100 by 15 pixels, 82dpi). The Table Lens can We present a new visualization, called the Table Lens, for comfortably manage about 30 times as many cells and can visualizing and making sense of large tables. The visual- display up to 100 times as many cells in support of many ization uses a focus+ccmtext (fisheye) technique that works tasks. The scale advantage is obtained by using a so-called effectively on tabular information because it allows display “focus+context” or “fisheye” technique. These techniques of crucial label information and multiple distal focal areas. allow interaction with large information structures by dynam- In addition, a graphical mapping scheme for depicting table ically distorting the spatial layout of the structure according to contents has been developed for the most widespread kind the varying interest levels of its parts. The design of the Table of tables, the cases-by-variables table. The Table Lens fuses Lens technique has been guided by the particular properties symbolic and gaphical representations into a single coherent and uses of tables. view that can be fluidly adjusted by the user. This fusion and A second contribution of our work is the merging of graphical interactivity enables an extremely rich and natural style of representations directly into the process of table visualization direct manipulation exploratory data analysis.
    [Show full text]
  • Army Acquisition Workforce Dependency on E-Mail for Formal
    ARMY ACQUISITION WORKFORCE DEPENDENCY ON E-MAIL FOR FORMAL WORK COORDINATION: FINDINGS AND OPPORTUNITIES FOR WORKFORCE PERFORMANCE IMPROVEMENT THROUGH E-MAIL-BASED SOCIAL NETWORK ANALYSIS KENNETH A. LORENTZEN May 2013 PUBLISHED BY THE DEFENSE ACQUISITION UNIVERSITY PRESS PROJECT ADVISOR: BOB SKERTIC CAPITAL AND NORTHEAST REGION, DAU THE SENIOR SERVICE COLLEGE FELLOWSHIP PROGRAM ABERDEEN PROVING GROUND, MD PAGE LEFT BLANK INTENTIONALLY .ARMY ACQUISITION WORKFORCE DEPENDENCY ON E-MAIL FOR FORMAL WORK COORDINATION: FINDINGS AND OPPORTUNITIES FOR WORKFORCE PERFORMANCE IMPROVEMENT THROUGH E-MAIL-BASED SOCIAL NETWORK ANALYSIS KENNETH A. LORENTZEN May 2013 PUBLISHED BY THE DEFENSE ACQUISITION UNIVERSITY PRESS PROJECT ADVISOR: BOB SKERTIC CAPITAL AND NORTHEAST REGION, DAU THE SENIOR SERVICE COLLEGE FELLOWSHIP PROGRAM ABERDEEN PROVING GROUND, MD PAGE LEFT BLANK INTENTIONALLY ii Table of Contents Table of Contents ............................................................................................................................ ii List of Figures ................................................................................................................................ vi Abstract ......................................................................................................................................... vii Chapter 1—Introduction ................................................................................................................. 1 Background and Motivation .................................................................................................
    [Show full text]
  • Geotime As an Adjunct Analysis Tool for Social Media Threat Analysis and Investigations for the Boston Police Department Offeror: Uncharted Software Inc
    GeoTime as an Adjunct Analysis Tool for Social Media Threat Analysis and Investigations for the Boston Police Department Offeror: Uncharted Software Inc. 2 Berkeley St, Suite 600 Toronto ON M5A 4J5 Canada Business Type: Canadian Small Business Jurisdiction: Federally incorporated in Canada Date of Incorporation: October 8, 2001 Federal Tax Identification Number: 98-0691013 ATTN: Jenny Prosser, Contract Manager, [email protected] Subject: Acquiring Technology and Services of Social Media Threats for the Boston Police Department Uncharted Software Inc. (formerly Oculus Info Inc.) respectfully submits the following response to the Technology and Services of Social Media Threats RFP. Uncharted accepts all conditions and requirements contained in the RFP. Uncharted designs, develops and deploys innovative visual analytics systems and products for analysis and decision-making in complex information environments. Please direct any questions about this response to our point of contact for this response, Adeel Khamisa at 416-203-3003 x250 or [email protected]. Sincerely, Adeel Khamisa Law Enforcement Industry Manager, GeoTime® Uncharted Software Inc. [email protected] 416-203-3003 x250 416-708-6677 Company Proprietary Notice: This proposal includes data that shall not be disclosed outside the Government and shall not be duplicated, used, or disclosed – in whole or in part – for any purpose other than to evaluate this proposal. If, however, a contract is awarded to this offeror as a result of – or in connection with – the submission of this data, the Government shall have the right to duplicate, use, or disclose the data to the extent provided in the resulting contract. GeoTime as an Adjunct Analysis Tool for Social Media Threat Analysis and Investigations 1.
    [Show full text]
  • Inviwo — a Visualization System with Usage Abstraction Levels
    IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL X, NO. Y, MAY 2019 1 Inviwo — A Visualization System with Usage Abstraction Levels Daniel Jonsson,¨ Peter Steneteg, Erik Sunden,´ Rickard Englund, Sathish Kottravel, Martin Falk, Member, IEEE, Anders Ynnerman, Ingrid Hotz, and Timo Ropinski Member, IEEE, Abstract—The complexity of today’s visualization applications demands specific visualization systems tailored for the development of these applications. Frequently, such systems utilize levels of abstraction to improve the application development process, for instance by providing a data flow network editor. Unfortunately, these abstractions result in several issues, which need to be circumvented through an abstraction-centered system design. Often, a high level of abstraction hides low level details, which makes it difficult to directly access the underlying computing platform, which would be important to achieve an optimal performance. Therefore, we propose a layer structure developed for modern and sustainable visualization systems allowing developers to interact with all contained abstraction levels. We refer to this interaction capabilities as usage abstraction levels, since we target application developers with various levels of experience. We formulate the requirements for such a system, derive the desired architecture, and present how the concepts have been exemplary realized within the Inviwo visualization system. Furthermore, we address several specific challenges that arise during the realization of such a layered architecture, such as communication between different computing platforms, performance centered encapsulation, as well as layer-independent development by supporting cross layer documentation and debugging capabilities. Index Terms—Visualization systems, data visualization, visual analytics, data analysis, computer graphics, image processing. F 1 INTRODUCTION The field of visualization is maturing, and a shift can be employing different layers of abstraction.
    [Show full text]
  • Word 2016: Working with Tables
    Word 2016: Working with Tables A table is made up of rows and columns. The intersection of a row and column is called a cell. Tables are often used to organize and present information, but they have a variety of uses as well. You can use tables to align numbers and create interesting page layouts. Creating a Table 1) Click the Insert tab on the Ribbon 2) Click on Table 3) Highlight the number of columns and rows you’d like OR 4) Click Insert Table 5) Click the arrows to select the desired number of columns 6) Click the arrows to select the desired number of rows 7) Click OK Navigating in a Table Please see below to learn how to move around within a table. Action Description Tab key To move from one cell in the table to another. When you reach the last cell in a table, pressing the Tab key will create a new row. Shift +Tab keys To move one cell backward in a table. Arrow keys Allow you to move left, right, up and down. 4 - 17 1 Selecting All or Part of a Table There are times you want to select a single cell, an entire row or column, multiple rows or columns, or an entire table. Selecting an Individual Cell To select an individual cell, move the mouse to the left side of the cell until you see it turn into a black arrow that points up and to the right. Click in the cell at that point to select it. Selecting Rows and Columns To select a row in a table, move the cursor to the left of the row until it turns into a white arrow pointing up and to the right, as shown below.
    [Show full text]
  • Table Understanding Through Representation Learning
    TURL: Table Understanding through Representation Learning Xiang Deng∗ Huan Sun∗ Alyssa Lees The Ohio State University The Ohio State University Google Research Columbus, Ohio Columbus, Ohio New York, NY [email protected] [email protected] [email protected] You Wu Cong Yu Google Research Google Research New York, NY New York, NY [email protected] [email protected] ABSTRACT Relational tables on the Web store a vast amount of knowledge. Owing to the wealth of such tables, there has been tremendous progress on a variety of tasks in the area of table understanding. However, existing work generally relies on heavily-engineered task- specific features and model architectures. In this paper, we present TURL, a novel framework that introduces the pre-training/fine- tuning paradigm to relational Web tables. During pre-training, our framework learns deep contextualized representations on relational tables in an unsupervised manner. Its universal model design with pre-trained representations can be applied to a wide range of tasks with minimal task-specific fine-tuning. Specifically, we propose a structure-aware Transformer encoder to model the row-column structure of relational tables, and present a new Masked Entity Recovery (MER) objective for pre-training to capture the semantics and knowledge in large-scale unlabeled data. Figure 1: An example of a relational table from Wikipedia. We systematically evaluate TURL with a benchmark consisting of 6 different tasks for table understanding (e.g., relation extraction, a total of 14.1 billion tables in 2008. More recently, Bhagavatula et al. cell filling). We show that TURL generalizes well to all tasks and [4] extracted 1.6M high-quality relational tables from Wikipedia.
    [Show full text]
  • VTK File Formats
    File Formats for VTK Version 4.2 (Taken from The VTK User’s Guide Contact Kitware www.kitware.com to purchase) VTK File Formats The Visualization Toolkit provides a number of source and writer objects to read and write popular data file formats. The Visualization Toolkit also provides some of its own file formats. The main reason for creating yet another data file format is to offer a consistent data representation scheme for a variety of dataset types, and to provide a simple method to com- municate data between software. Whenever possible, we recommend that you use formats that are more widely used. But if this is not possible, the Visualization Toolkit formats described here can be used instead. Note that these formats may not be supported by many other tools. There are two different styles of file formats available in VTK. The simplest are the legacy, serial formats that are easy to read and write either by hand or programmatically. However, these formats are less flexible than the XML based file formats described later in this section. The XML formats support random access, parallel I/O, and portable data com- pression and are preferred to the serial VTK file formats whenever possible. Simple Legacy Formats The legacy VTK file formats consist of five basic parts. 1. The first part is the file version and identifier. This part contains the single line: # vtk DataFile Version x.x. This line must be exactly as shown with the exception of the version number x.x, which will vary with different releases of VTK.
    [Show full text]
  • 000 Computer Science, Information, General Works
    000 000 Computer science, information, general works SUMMARY 001–006 [Knowledge, the book, systems, computer science] 010 Bibliography 020 Library and information sciences 030 General encyclopedic works 050 General serial publications 060 General organizations and museology 070 Documentary media, educational media, news media; journalism; publishing 080 General collections 090 Manuscripts, rare books, other rare printed materials 001 Knowledge Description and critical appraisal of intellectual activity in general Including interdisciplinary works on consultants Class here discussion of ideas from many fields; interdisciplinary approach to knowledge Class epistemology in 121. Class a compilation of knowledge in a specific form with the form, e.g., encyclopedias 030 For consultants or use of consultants in a specific subject, see the subject, e.g., library consultants 023, engineering consultants 620, use of consultants in management 658.4 See Manual at 500 vs. 001 .01 Theory of knowledge Do not use for philosophy of knowledge, philosophical works on theory of knowledge; class in 121 .1 Intellectual life Nature and value For scholarship and learning, see 001.2 See also 900 for broad description of intellectual situation and condition 217 001 Dewey Decimal Classification 001 .2 Scholarship and learning Intellectual activity directed toward increase of knowledge Class methods of study and teaching in 371.3. Class a specific branch of scholarship and learning with the branch, e.g., scholarship in the humanities 001.3, in history 900 For research,
    [Show full text]
  • Geotime Product Evaluation Lex Berman, CGA 12 Dec 09 Abstract
    GeoTime Product Evaluation Lex Berman, CGA 12 Dec 09 Abstract: GeoTime is a stand-alone spatio-temporal browser with built-in queries for analyzing imported datasets containing events with defined spatial and temporal footprints. Events can be viewed as discrete points in a 3D space- time cube (with the the z-value representing the time axis), or can be viewed as entities (which are comprised of multiple location-events). The current version of GeoTime can directly load tables and flat files (including KML), but must be used together with ESRI ArcGIS to load from shapefiles and layers. Installation : The installation package for GeoTime includes an executable installer (for Windows only), a license file, and a third-party map library application, called MapMan. For GeoTime to run with ESRI files, both ArcGIS 9.2 or 9.3 must be installed, along with .NET, and Excel. Installation on ArcGIS 9.3 worked as expected during testing, but failed to completely integrate with ArcGIS 9.2 (due to an error with ESRI .NET assemblies). On the ArcGIS 9.3 install, the application worked for the administrator user profile only. It was not clear how to install the application for all user profiles. There are some options for installing the application with a license server, presumably to run as a keyed application over a limited subnet group of machines. However, since we are using the trial-period stand-alone client we don't know the level of difficulty in getting the license server (third-party software) to run. The MapMan package, included with GeoTime, takes considerably longer than GeoTime to install.
    [Show full text]
  • Department of Pathology and Laboratory Medicine 2012-2013 Annual Report
    DEPARTMENT OF PATHOLOGY AND LABORATORY MEDICINE 2012-2013 ANNUAL REPORT TABLE OF CONTENTS Faculty Roster . 1 Research and Scholarly Accomplishments . 8 Teaching . 38 Medical Teaching . 38 Dental Teaching . 39 Molecular and Cellular Pathology Graduate Program . 40 Residency Training Program . 42 Subspecialty Fellowship Training Program . 43 Clinical Chemistry Fellowship . 43 Clinical Microbiology Fellowship . 44 Clinical Molecular Genetics Fellowship . 44 Clinical Molecular Pathology Fellowship. 45 Coagulation Fellowship. 45 Cytogenetics Fellowship. 45 Cytopathology Fellowship. 46 Forensic Pathology Fellowship. 46 Hematopathology Fellowship. 47 Nephropathology Fellowship. 47 Surgical Pathology Fellowship. 48 Transfusion Medicine Fellowship. 48 Grand Rounds Seminars . 48 Clinical Services . 53 Background. 53 McLendon Clinical Laboratories Herbert Whinna, M.D. Ph.D., Director Surgical Pathology (Histology/Special Procedures) . 53 William K. Funkhouser, M.D., Ph.D., Director Cytopathology . 54 Susan J. Maygarden, M.D., Director Autopsy Pathology. 54 Leigh B. Thorne, M.D., Director Molecular Pathology. 55 Margaret L. Gulley, M.D., Director i Transfusion Medicine, Apheresis, Transplant Services. 56 Yara A. Park, M.D., Director Clinical Microbiology, Immunology. 56 Peter H. Gilligan, Ph.D., Director Phlebotomy. 59 Peter H. Gilligan, Ph.D., Director Core Laboratory (Chem./UA/Coag./Hem/Tox/Endo) . 59 Catherine A. Hammett-Stabler, Ph.D., Director Hematopathology . 60 George Fedoriw, M.D., Director Special Coagulation . 60 Herbert C. Whinna, M.D., Ph.D., Director Cytogenetics . 61 Kathleen W. Rao, Ph.D., Director Kathleen A. Kaiser-Rogers, Co-Director Laboratory Information Services . 62 Herbert C. Whinna, M.D., Ph.D., Director Nephropathology Laboratory. 62 Volker R. Nickeleit, M.D., Director Quality Management . 63 Herbert C. Whinna, M.D., Ph.D., Director Neuropathology .
    [Show full text]
  • Emo Onally Looking Eyes
    Emo$onally Looking Eyes 2012 Winter vacaon internship Gahye Park Introduc$on • Overview – Review – Goal • Progress summary • Progress – Weekly progress & Difficules • Conclusion Overview - Review • Volume Rendering – Rendering data set like a group of 2D slice images ac quired by a CT, MRI, or MicroCT scanner • Volume ray cas$ng – Ray cas$ng, Sampling, Shading, Composing Overview - Review • Exis$ng eyeball rendering – Eyeball • Ar$ficial 3D model – Iris • Paste texture • Overlapped semi-transparent layers – Ar$ficial data – Lack of depth informaon Overview - Goal • Rendering emo$onally looking eyes – Real anatomical data – Include human $ssue informaon → Natural liveliness Progress Summary • Find eyeball or similar 3rd • Learn voreen (video, programming tutorials) • Render data similar to eyeball by • Find volume data and render it by voreen week voreen(VOlume REndering ENgine) • Learn voreen(slides tutorial) th • Get scanned eyeball data 4 • Find dicom data for segmentaon • Extract and refine eyeball data week • Extract eyes and check this briefly using Seg3D and voreen • 30, 2/1 : hci 2013 5th • Refine and finish extrac:ng 2 ct results • Adjust OTF(Opacity Transfer Func$on) week table • Parcipate HCI conference 1st • Finish adJus:ng o table • Adjust OTF table and shader week • Learn volume rendering tutorial for shader coding 2nd • Adjust OTF table and shader week • vacaon • Lunar new year & Vacaon rd • vacaon 3 • Vacaon week • Analyze results and improvement 4th • Consider expected effect • Analyze exis:ng shader code week • Complete the project • Prepare progress the presentaon Progress (Jan. 3rd week) • Find volume data set – The Volume Library head data set Descripon Picture MRI Head 14M 256x256x256 MRI Woman 7.7M 256x256x109 CT Visible Male 2.8M 128x256x256 Progress (Jan.
    [Show full text]
  • 6-Michalek Et Al.Indd
    The negotiation position amid member states of the EU Vyjednávací pozice mezi členskými státy P. MICHÁLEK, P. RYMEŠOVÁ, L. MÜLLEROVÁ, H. CHAMOUTOVÁ, K. CHAMOUTOVÁ Czech University of Agriculture, Prague, Czech Republic Abstract: The European integration process is very important and it has been paid attention to for the last 15 years. The abstract deals with the negotiation field and position in the structure of the current expanded EU. For better orientation in this equivocal situation, a modern cartography method of relationship in the arbitrary group called dynamic sociometry was used. The method is based on classical sociometry Morena and furthermore it uses the instrument of fuzzy set, typo- logy and structural analysis. The output of this method is a sociomap. The map holds information on the relative closeness or the distance of individual elements, their configuration but also some quality information. The graphic chart is similar to a topographic map. In our case, the sociomap was created from the data of foreign business among the member coun- tries. The following analysis of the sociomap we detected and described characteristic features of the analysed group. It consists of formal and informal links in the group, the role and the position of each member within the group, the structure and relations in the group. In the concrete, we attained data to answer the questions about the present climate in interre- lationships in the EU, which means the relationships among the members as the whole entities but also the relationships separately among members themselves. The position analysis of the Czech Republic in the system of the created sociomaps was considered as very important.
    [Show full text]