Semantic Search and Reporting Implementation on .15926 Platform

Total Page:16

File Type:pdf, Size:1020Kb

Semantic Search and Reporting Implementation on .15926 Platform Semantic search and reporting implementation on .15926 platform Victor Agroskin 10.05.2012 1 About the .15926 project • TechInvestLab.ru – Moscow-based strategy, organization and IT architecture consultancy • Software platform for ontology programming – allow business user to perform advanced tasks with data using only domain-specific terms, patterns and metaphors • .15926 public releases: – Browser, March 2011 – Editor, December 2011 – TabLan modeling methodology, March 2012 – SearchLan query language, May 2012 (planned) • Russian-speaking community of approx. 100 friends 2 Ontology Programming Platform • A long road to business user starts from rather complex things • Programming, modeling, ontologizing – different names for one activity – Mapping and compiling are the same • Ontology-related computations based on general- purpose multi-paradigm language – Not a logic one! • Domain Specific Languages (DSLs) - defining higher abstraction language layers and domain-specific constructs – From triples to instances to templates to patterns… 3 Language Workbench IDE • The goal – to have a product of Language Workbench class for ontology work • Fully integrated DSL development – definitions, libraries, editors • Turing-complete mapping environment to any schema (conceptual or proprietary CAD/PLM) • Seamless integration with outside data sources – tables, databases, XML • Python realization: – Core functionality to work with various triple representations of ISO 15926 type and template instances – Core support of SPARQL querying, optimized for work with federated endpoints as unreliable infrastructure – Plug-in architecture for data analysis and transformation (mappings, searches, verification, reasoning, etc.) – Optimized for ISO 15926 data structure searches (indexing, substring filtering, etc.) 4 SearchLan Tables Interface Table Reader OIM Writer TabLan OIM Mapping Mapping Definition .15926 Builder .15926 Scanner Editor Interface Library Library Template Template ISO 15926 Data ____ 15926-2 15926-7 15926-6 classes, relationships, template definitions, metadata individuals template instances .15926 Core 15926-7 template constructor RDF/OWL Files RDF/OWL Files & SPARQL 15926-2,7 OWL Definitions iRING, Part 8, PCA RDL/JORD, Part 4 SPARQL Endpoint 5 Engineering Data Domain • Big Data – PCA RDL – more then 3 mil. triples and set to grow – … but it is just reusable reference data! • Data integration vs. data reuse – do not throw away intermediary files, but learn to work with them – Distributed semantic networks with many-layered semantic predefined by engineering knowledge • Mappings across several ontologies • Specialized semantic tools required for: – Data modeling – Mappings – Reasoning – Search 6 ISO 15926 (Meta) Languages Conceptual Graphical Data Query Patterns Part 7 Templates Part 8 RDF/OWL Part 2 Type Part 2,7 Conventions Instances Instance Diagrams EXPRESS EXPRESS-G OWL RDF SPARQL XML 7 + Engineering Languages Conceptual Graphical Data Query Engineering Drawings & CAD/PLM Natural Specialty Diagrams Formats Language Information Patterns Part 7 Templates Part 8 RDF/OWL Part 2 Type Part 2-7 Conventions Instances Instance Diagrams EXPRESS EXPRESS-G OWL RDF SPARQL XML 8 Filling the Gaps Conceptual Graphical Data Query Engineering Drawings & CAD/PLM Natural Specialty Data Diagrams Formats Language Patterns Gellish SearchLan TabLan.15926 .15926 Part 7 Templates Part 8 RDF/OWL Part 2 Type Part 2-7 Conventions Instances Instance Diagrams EXPRESS EXPRESS-G OWL RDF SPARQL XML 9 SearchLan.15926 • Query language for 15926-restricted (Part 2 type instances and template instances) RDF graph • Built over SPARQL • Integrated 15926-8 specific data and meta-data (annotation properties) queries • Available on .15926 platform to plug-ins and in user interface • Extendable as standard Python functions • High-level logic available for language extension • Configurable for specific presets: collections of interrelated data sources (files and endpoints) with namespace conventions, template libraries and metadata annotations 10 Name Queries @find(label=contains('UOM')) 11 Part 2 Type Queries @find(id=R1, type=part2.ClassOfClassOfInformationRepresentation) 12 Part 2 Relationship Queries @find(type=part2.Classification, hasClassifier=R5, hasClassified=out) 13 Template Queries @find(type=p7tpl.DescriptionByInformationObject, hasRepresented=out, hasPattern=find(label=icontains(“snip”))) 14 Reference Data Verification (1) @find(type=part2.Classification, hasClassified= find(type=part2.any.ClassOfRelationship), hasClassifier= find(type=part2.any.ClassOfClassOfIndividual) ) 15 Reference Data Verification (2) @find(type=part2.Classification, hasClassified= find(type=part2.any.ClassOfIndividual), hasClassifier= find(type=part2.any.ClassOfClassOfRelationship) ) 16 Template “Contraction” Query @find(type=part2.ClassOfIndirectProperty, hasClassOfPossessor=out, hasPropertySpace= find(type=part2.Classification, hasClassifier=out, hasClassified= find(type=part2.PropertyQuantification, hasInput=out, hasResult= find(type=part2.RealNumber) ) ) ) 17 Template “Contraction” Results 18 Patterns (iRING version) PLANT AREA Functional Area ClassifiedArrangementOfIndividual COMPOSITION P0002 AREA CODE ClassifiedClassOfIdentification IDENTIFICATION @find(type=p7tpl.ClassifiedArrangementOfIndividual, hasPart=find(id=uri(‘http://company.com/pr oject/data#R7554677677’)), hasWhole=out, hasContext=find(label=icontains(‘plant area composition’))) @find(type=p7tpl.ClasifiedClassOfIdentification, hasRepresented=R1, valPattern=out, hasContext=find(label=icontains(‘area code’))) 19 Object Information Models • Extracting ISO 15926 sub-graphs (not RDF!) and presenting them in a user interface in a compact form • Partial definition: oim_settings = [ dict(category="classified by", type=part2.Classification, hasClassified=_this, hasClassifier=_other), dict(category="classifies", type=part2.Classification, hasClassified=_other, hasClassifier=_this), dict(category="is specialization of", type=part2.Specialization, hasSubclass=_this, hasSuperclass=_other), dict(category="is generalization of", type=part2.Specialization, hasSubclass=_other, hasSuperclass=_this), dict(category="is identified by", type=part2.ClassOfIdentification, hasRepresented=_this, hasPattern=_other), ] 20 21 OIM Enhanced with Query 22 23 Roadmap • Open plug-in specification • DSL Workbench IDE • Client-driven feature sets: – Presets for data sources – servers, files, namespaces, metadata, etc. – Readers, Writers and Mappings – Template expansion – Data verifiers and reasoners • Opening the source code for partners • Python based – for foreseeable future 24 SearchLan XML Files Databases Tables CAD/CAM/PLM Interface XML, SQL, CAD/PLM API Table OIM XML, SQL, CAD/PLM API Reader Reader Writer Writer .15926 Builder .15926 Scanner Editor Interface Library Library Template Template 15926-2 15926-7 15926-6 classes, relationships, template definitions, metadata individuals template instances Template Expansion 15926-7 template constructor RDF/OWL Files RDF/OWL Files & SPARQL 15926-2,7 OWL Definitions iRING, Part 8, PCA RDL/JORD, Part 4 SPARQL Endpoint 25 Thank you! Anatoly Levenchuk http://ailev.ru (Rus) http://levenchuk.com (Eng) [email protected] Victor Agroskin [email protected] Freeware .15926 Editor available “as is” for evaluation and tests at http://techinvestlab.ru/dot15926Editor Feedback and comments: [email protected] http://community.livejournal.com/dot15926/ TechInvestLab.ru +7 (495) 748-5388 2626 Elephant icon by Martin Berube is used for .15926 software according to terms at http://www.iconarchive.com/show/animal -icons -by -martin -berube/elephant -icon.html.
Recommended publications
  • Data Warehouse: an Integrated Decision Support Database Whose Content Is Derived from the Various Operational Databases
    1 www.onlineeducation.bharatsevaksamaj.net www.bssskillmission.in DATABASE MANAGEMENT Topic Objective: At the end of this topic student will be able to: Understand the Contrasting basic concepts Understand the Database Server and Database Specified Understand the USER Clause Definition/Overview: Data: Stored representations of objects and events that have meaning and importance in the users environment. Information: Data that have been processed in such a way that they can increase the knowledge of the person who uses it. Metadata: Data that describes the properties or characteristics of end-user data and the context of that data. Database application: An application program (or set of related programs) that is used to perform a series of database activities (create, read, update, and delete) on behalf of database users. WWW.BSSVE.IN Data warehouse: An integrated decision support database whose content is derived from the various operational databases. Constraint: A rule that cannot be violated by database users. Database: An organized collection of logically related data. Entity: A person, place, object, event, or concept in the user environment about which the organization wishes to maintain data. Database management system: A software system that is used to create, maintain, and provide controlled access to user databases. www.bsscommunitycollege.in www.bssnewgeneration.in www.bsslifeskillscollege.in 2 www.onlineeducation.bharatsevaksamaj.net www.bssskillmission.in Data dependence; data independence: With data dependence, data descriptions are included with the application programs that use the data, while with data independence the data descriptions are separated from the application programs. Data warehouse; data mining: A data warehouse is an integrated decision support database, while data mining (described in the topic introduction) is the process of extracting useful information from databases.
    [Show full text]
  • Bi-Directional Transformation Between Normalized Systems Elements and Domain Ontologies in OWL
    Bi-directional Transformation between Normalized Systems Elements and Domain Ontologies in OWL Marek Suchanek´ 1 a, Herwig Mannaert2, Peter Uhnak´ 3 b and Robert Pergl1 c 1Faculty of Information Technology, Czech Technical University in Prague, Thakurova´ 9, Prague, Czech Republic 2Normalized Systems Institute, University of Antwerp, Prinsstraat 13, Antwerp, Belgium 3NSX bvba, Wetenschapspark Universiteit Antwerpen, Galileilaan 15, 2845 Niel, Belgium Keywords: Ontology, Normalized Systems, Transformation, Model-driven Development, Ontology Engineering, Software Modelling. Abstract: Knowledge representation in OWL ontologies gained a lot of popularity with the development of Big Data, Artificial Intelligence, Semantic Web, and Linked Open Data. OWL ontologies are very versatile, and there are many tools for analysis, design, documentation, and mapping. They can capture concepts and categories, their properties and relations. Normalized Systems (NS) provide a way of code generation from a model of so-called NS Elements resulting in an information system with proven evolvability. The model used in NS contains domain-specific knowledge that can be represented in an OWL ontology. This work clarifies the potential advantages of having OWL representation of the NS model, discusses the design of a bi-directional transformation between NS models and domain ontologies in OWL, and describes its implementation. It shows how the resulting ontology enables further work on the analytical level and leverages the system design. Moreover, due to the fact that NS metamodel is metacircular, the transformation can generate ontology of NS metamodel itself. It is expected that the results of this work will help with the design of larger real-world applications as well as the metamodel and that the transformation tool will be further extended with additional features which we proposed.
    [Show full text]
  • A Survey and Classification of Controlled Natural Languages
    A Survey and Classification of Controlled Natural Languages ∗ Tobias Kuhn ETH Zurich and University of Zurich What is here called controlled natural language (CNL) has traditionally been given many different names. Especially during the last four decades, a wide variety of such languages have been designed. They are applied to improve communication among humans, to improve translation, or to provide natural and intuitive representations for formal notations. Despite the apparent differences, it seems sensible to put all these languages under the same umbrella. To bring order to the variety of languages, a general classification scheme is presented here. A comprehensive survey of existing English-based CNLs is given, listing and describing 100 languages from 1930 until today. Classification of these languages reveals that they form a single scattered cloud filling the conceptual space between natural languages such as English on the one end and formal languages such as propositional logic on the other. The goal of this article is to provide a common terminology and a common model for CNL, to contribute to the understanding of their general nature, to provide a starting point for researchers interested in the area, and to help developers to make design decisions. 1. Introduction Controlled, processable, simplified, technical, structured,andbasic are just a few examples of attributes given to constructed languages of the type to be discussed here. We will call them controlled natural languages (CNL) or simply controlled languages.Basic English, Caterpillar Fundamental English, SBVR Structured English, and Attempto Controlled English are some examples; many more will be presented herein. This article investigates the nature of such languages, provides a general classification scheme, and explores existing approaches.
    [Show full text]
  • A Conceptual Framework for Constructing Distributed Object Libraries Using Gellish
    A Conceptual Framework for Constructing Distributed Object Libraries using Gellish Master's Thesis in Computer Science Michael Rudi Henrichs [email protected] Parallel and Distributed Systems group Faculty of Electrical Engineering, Mathematics and Computer Science Delft University of Technology June 1, 2009 Student Michael Rudi Henrichs Studentnumber: 9327103 Oranjelaan 8 2264 CW Leidschendam [email protected] MSc Presentation June 2, 2009 at 14:00 Lipkenszaal (LB 01.150), Faculty EWI, Mekelweg 4, Delft Committee Chair: Prof. Dr. Ir. H.J. Sips [email protected] Member: Dr. Ir. D.H.J. Epema [email protected] Member: Ir. N.W. Roest [email protected] Supervisor: Dr. K. van der Meer [email protected] Idoro B.V. Zonnebloem 52 2317 LM Leiden The Netherlands Parallel and Distributed Systems group Department of Software Technology Faculty of Electrical Engineering, Mathematics and Computer Science Delft University of Technology Mekelweg 4 2826 CD Delft The Netherlands www.ewi.tudelft.nl Sponsors: This master's thesis was typeset with MiKTEX 2.7, edited on TEXnicCenter 1 beta 7.50. Illustrations and diagrams were created using Microsoft Visio 2003 and Corel Paint Shop Pro 12.0. All running on an Acer Aspire 6930. Copyright c 2009 by Michael Henrichs, Idoro B.V. Cover photo and design by Michael Henrichs c 2009 http:nnphoto.lemantle.com All rights reserved. No part of the material protected by this copyright notice may be reproduced or utilized in any form or by any means, electronic or mechanical, including photocopying, recording or by any information storage and retrieval system, without the prior permission of the author.
    [Show full text]
  • Data Models for Home Services
    __________________________________________PROCEEDING OF THE 13TH CONFERENCE OF FRUCT ASSOCIATION Data Models for Home Services Vadym Kramar, Markku Korhonen, Yury Sergeev Oulu University of Applied Sciences, School of Engineering Raahe, Finland {vadym.kramar, markku.korhonen, yury.sergeev}@oamk.fi Abstract An ultimate penetration of communication technologies allowing web access has enriched a conception of smart homes with new paradigms of home services. Modern home services range far beyond such notions as Home Automation or Use of Internet. The services expose their ubiquitous nature by being integrated into smart environments, and provisioned through a variety of end-user devices. Computational intelligence require a use of knowledge technologies, and within a given domain, such requirement as a compliance with modern web architecture is essential. This is where Semantic Web technologies excel. A given work presents an overview of important terms, vocabularies, and data models that may be utilised in data and knowledge engineering with respect to home services. Index Terms: Context, Data engineering, Data models, Knowledge engineering, Semantic Web, Smart homes, Ubiquitous computing. I. INTRODUCTION In recent years, a use of Semantic Web technologies to build a giant information space has shown certain benefits. Rapid development of Web 3.0 and a use of its principle in web applications is the best evidence of such benefits. A traditional database design in still and will be widely used in web applications. One of the most important reason for that is a vast number of databases developed over years and used in a variety of applications varying from simple web services to enterprise portals. In accordance to Forrester Research though a growing number of document, or knowledge bases, such as NoSQL is not a hype anymore [1].
    [Show full text]
  • Universidad Carlos III De Madrid Escuela Politécnica Superior
    Universidad Carlos III de Madrid Escuela Politécnica Superior Ingeniería en Informática Proyecto Fin de Carrera DISEÑO DE UN MUNDO VIRTUAL PARA LA ENSEÑANZA DE ARQUITECTURA SOFTWARE Autor: Verónica Casado Manzanero Tutor: Anabel Fraga Vázquez Diciembre, 2009 DISEÑO DE UN MUNDO VIRTUAL PARA LA ENSEÑANZA DE ARQUITECTURA SOFTWARE Agradecimientos En primer lugar querría dar las gracias a mis padres, por su apoyo, comprensión, generosidad, por darme todo lo que necesito y más, y sobre todo, por enseñarme a ser como soy y servirme de ejemplo para convertirme en mejor persona cada día. También me gustaría recordar a mi hermana por ayudarme siempre en lo he necesitado con esa gran dosis de paciencia que sé que ha de tener. A mis amigas Carol y Raquel, por permanecer siempre a mi lado a pesar de estar semanas sin vernos. A mi novio Marcos, por pasarme esa paciencia y tranquilidad suya que tanto aprecio, por apoyarme en todo momento, por creer en mí y por permanecer a mi lado durante estos seis largos años. Por último, agradecerle a mi tutora Anabel toda la ayuda prestada, tanto en las asignaturas como en este proyecto. Gracias a su inestimable ayuda y entusiasmo he podido completar con éxito el trabajo aquí propuesto. Ha sido un verdadero placer trabajar con ella. Verónica Casado Manzanero 3/254 Universidad Carlos III de Madrid DISEÑO DE UN MUNDO VIRTUAL PARA LA ENSEÑANZA DE ARQUITECTURA SOFTWARE Verónica Casado Manzanero 4/254 Universidad Carlos III de Madrid DISEÑO DE UN MUNDO VIRTUAL PARA LA ENSEÑANZA DE ARQUITECTURA SOFTWARE Contenido 1. Introducción y motivación .........................................................................................
    [Show full text]
  • Ontology Languages – a Review
    International Journal of Computer Theory and Engineering, Vol.2, No.6, December, 2010 1793-8201 Ontology Languages – A Review V. Maniraj, Dr.R. Sivakumar 1) Logical Languages Abstract—Ontologies have been becoming a hot research • First order predicate logic topic for the application in artificial intelligence, semantic web, Software Engineering, Library Science and information • Rule based logic Architecture. Ontology is a formal representation of set of concepts within a domain and relationships between those • concepts. It is used to reason about the properties of that Description logic domain and may be used to define the domain. An ontology language is a formal language used to encode the ontologies. A 2) Frame based Languages number of research languages have been designed and released • Similar to relational databases during the past few years by the research community. They are both proprietary and standard based. In this paper a study has 3) Graph based Languages been reported on the different features and issues of these • languages. This paper also addresses the challenges for Semantic network research community in the further development of ontology languages. • Analogy with the web is rationale for the semantic web I. INTRODUCTION Ontology engineering (or ontology building) is a subfield II. BACKGROUND of knowledge engineering that studies the methods and CycL1 in computer science and artificial intelligence is an methodologies for building ontologies. It studies the ontology language used by Doug Lenat’s Cye artificial ontology development process, the ontology life cycle, the intelligence project. Ramanathan V. Guna was instrumental methods and methodologies for building ontologies, and the in the design of the language.
    [Show full text]
  • Ontology-Based Design of Space Systems
    Ontology-Based Design of Space Systems Christian Hennig 1, Alexander Viehl 2, Benedikt Kämpgen 2, and Harald Eisenmann 1 1Airbus Defence and Space, Space Systems, Friedrichshafen, Germany {christian.hennig,harald.eisenmann}@airbus.com 2FZI Research Center for Information Technology, Karlsruhe, Germany {viehl,kaempgen}@fzi.de Abstract. In model-based systems engineering a model specifying the system's design is shared across a variety of disciplines and used to ensure the consisten- cy and quality of the overall design. Existing implementations for describing these system models exhibit a number of shortcomings regarding their approach to data management. In this emerging applications paper, we present the appli- cation of an ontology for space system design that provides increased semantic soundness of the underlying standardized data specification, enables reasoners to identify problems in the system, and allows the application of operational knowledge collected over past projects to the system to be designed. Based on a qualitative evaluation driven by data derived from an actual satellite design pro- ject, a reflection on the applicability of ontologies in the overall model-based systems engineering approach is pursued. Keywords: Space Systems, Systems Engineering, MBSE, ECSS-E-TM-10-23, Conceptual Data Model, OWL, Reasoning. 1 Introduction The industrial setting for producing systems to be deployed in space, such as satel- lites, launch vehicles, or science spacecraft, involves a multitude of engineering disci- plines. Each involved discipline has its own view on the system to be built, along with its own models, based on its own model semantics. For forming a consistent picture of the system, information from all relevant discipline-specific models is integrated towards an interdisciplinary system model, forming the practice of model-based sys- tems engineering (MBSE).
    [Show full text]
  • DISEASE ONTOLOGY SC Mohapatra1 and Meghkanta Mohapatra2
    ISSN- 2394-272X(Print) e-ISSN-2394-2738(Online) EDITORIAL: DISEASE ONTOLOGY SC Mohapatra1 and Meghkanta Mohapatra2 The term ontology is originally used in philosophy and has been applied in many different subjects thereafter. It is branch of metaphysics that studies the nature of existence. The word element onto- comes from the Greek “being". Thus Ontology means “science of being”. From philosophy ontology is an explicit formal specification of how to represent the objects, concepts and other entities that are assumed to exist and the relationships they have with each other. When the knowledge about a domain is represented in a declarative language, the set of objects are called the universe of discourse. We can describe the ontology of a program by defining a set of representational terms. Definitions associate the names of entities in the population of discourses (e.g. classes, relations, functions or other objects). Formally, an ontology is the statement of a logical theory. We say that an agent commits to an ontology if its observable actions are consistent with the definitions. The idea of ontological commitment is based on the “Knowledge-Level perspective”. In case of disease it makes sense that the ‘Science of being a disease’. The core meaning within computer science is a model for describing the world that consists of a set of types, properties, and relationship. There is also generally an expectation that the features of the model in an ontology should closely resemble the real world (related to the object). What may ontologies have in common in both computer science and in philosophy is the representation of entities, ideas, and events, along with their properties and relations, according to a system of categories.
    [Show full text]
  • Gellish English Steplib
    Dr. Ir. Andries van Renssen Principal Consultant Information Management Shell Global Solutions Consultancy & Services for Data Exchange and Data Integration Copyright: Shell Global Solutions International B.V. The Gellish Language a structured subset of natural languages - Gellish English - Gellish Nederlands - Gellish Deutsch -Etc. - Gellish numeric Copyright: Shell Global Solutions International B.V. The Business Issue: Communication on Product Data >15 EPC Contractors Plant Detailed life Engineering Suppliers time Procure & Technical Advisors 100 - 1000 Fabricate Conceptual design Plants Plant owners Clear away Construct & Commission Plant Change or Revamp Constructors All again >100 Maintain Operate Maintenance Operators Contractors > 100 14-06-1995 Copyright: Shell Global Solutions International B.V. The Business Issue: Communication on Product Data Suppliers perspective Discipline experts Plant Detailed Part-Suppliers life Engineering time Sales Procure & Fabricate Conceptual design Equipment Plant owners & Construct & Commission Operations Systems & Maintenance Maintenance Construction Verification contractors Hand-over and testing Standards Authorities institutes 14-06-1995 Copyright: Shell Global Solutions International B.V. The Data Exchange & Data Integration issue 1. Standard engineering terminology is needed - There is no standard electronic Business/Engineering dictionary available Ecl@ss, Rosettanet, Trade Ranger, UNSPSC, …, STEPlib / ISO 15926-4 All proprietary data and based on proprietary data models 2. Data structures
    [Show full text]
  • Uvic Thesis Template
    UNIVERSITY OF SOUTHAMPTON FACULTY OF PHYSICAL SCIENCES AND ENGINEERING Electronics and Computer Science Building Tag Hierarchies Based on Co-occurrences and Lexico-Syntactic Patterns by Fahad Ibrahim Bin Moqhim Thesis for the degree of Doctor of Philosophy June 2016 ii iii UNIVERSITY OF SOUTHAMPTON ABSTRACT FACULTY OF PHYSICAL SCIENCES AND ENGINEERING Electronics and Computer Science Thesis for the degree of Doctor of Philosophy BUILDING TAG HIERARCHIES BASED ON CO-OCCURRENCES AND LEXICO-SYNTACTIC PATTERNS Fahad Ibrahim Bin Moqhim Knowledge structures, such as taxonomies, are key to the organization and management of Web content, but are expensive to build manually. In this thesis we explore the issues around automatically building effective tag hierarchies from folksonomies (collective social classifications), and propose changes to the state-of- the-art methods that improve their performance. These changes aim to tackle the “generality-popularity” tags problem, in that popularity is assumed (sometimes inaccurately) to be a proxy for generality, i.e. high-level taxonomic terms will occur more often than low-level ones. The effectiveness of this research is demonstrated in four experiments. The first experiment explores whether taxonomic tag pairs captured directly from users change the quality of constructed tag hierarchies. The second experiment examines the possibility of using personal tag relationships constructed by users to improve the accuracy of learned taxonomic tags. The third experiment demonstrates the potential of using lexico-syntactic patterns applied to a closed text corpus to improve the direction of automatically derived tag pairs in order to build higher quality tag hierarchies. The last experiment investigates the possibility of using an open knowledge repository instead of a closed knowledge resource to increase the tags coverage in any tag collection, and consequently the quality of learned tag hierarchies.
    [Show full text]
  • Operation Augmented Ontologies
    Capturing the Semantics of Change: Operation Augmented Ontologies Gavan John Newell Submitted in total fulfilment of the requirements of the degree of Master of Computer Science Department of Computer Science and Software Engineering THE UNIVERSITY OF MELBOURNE April 2009 Copyright c 2009 Gavan John Newell All rights reserved. No part of the publication may be reproduced in any form by print, photoprint, microfilm or any other means without written permission from the author. Abstract As information systems become more complex it is infeasible for a non-expert to under- stand how the information system has evolved. Accurate models of these systems and the changes occurring to them are required for interpreters to understand, reason over, and learn from evolution of these systems. Ontologies purport to model the semantics of the domain encapsulated in the system. Existing approaches to using ontologies do not capture the rationale for change but instead focus on the direct differences between one version of a model and the subsequent version. Some changes to ontologies are caused by a larger context or goal that is temporally separated from each specific change to the ontology. Current approaches to supporting change in ontologies are insufficient for rea- soning over changes and allow changes that lead to inconsistent ontologies. In this thesis we examine the existing approaches and their limitations and present a four-level classification system for models representing change. We address the short- comings in current techniques by introducing a new approach, augmenting ontologies with operations for capturing and representing change. In this approach changes are rep- resented as a series of connected, related and non-sequential smaller changes.
    [Show full text]