An explicit specification of a conceptualization

Size: px
Start display at page:

Download "An explicit specification of a conceptualization"

Transcription

1 What is an Ontology? An explicit specification of a conceptualization [Tom Gruber 1993] concepts properties and attributes of concepts constraints on properties and attributes individuals (often, but not always) abstract model of some domain An ontology defines a common vocabulary a shared understanding Semantic Web (6) 1

2 Ontology examples: Lightweight taxonomies Taxonomy is the practice and science of classification. The word comes from the Greek τ αξις ( order ) and νoµoς ( law or science ) Linnaean taxonomy: a classification of living things (Carl Linnaeus, , father of modern taxonomy ) Yahoo! Web Directory ( Open Directory Project 590,000 categories ( Amazon product catalog Semantic Web (6) 2

3 Ontology examples: Heavy weight Cyc, upper ontology for all of human consensus reality (started in 1994) the world s largest and most complete general knowledge base and commonsense reasoning engine Semantic Web (6) 3

4 Ontology examples: e-science Open Biomedical Ontologies Consortium: GO MGED Used, e.g., for in silico investigations relating theory and data Semantic Web (6) 4

5 Ontology examples: Medicine Building/maintaining terminologies such as Snomed CT, NCI, Galen and FMA (Snomed CT: Systematised Nomenclature of Medicine Clinical Terms) Used, e.g., for semi-automated annotation of MRI images Clinicians use different terms that mean the same thing: heart attack, myocardial infarction, and MI may mean the same thing to a cardiologist, but to a computer, they are all different. Semantic Web (6) 5

6 Ontology examples: organising complex information E.g., UN-FAO, NASA, Ordnance Survey, General Motors, Lockheed Martin,... Semantic Web (6) 6

7 What is Ontology Engineering? Ontology Engineering defining terms in the domain and relations among them: defining concepts in the domain (classes) arranging the concepts in a hierarchy (subclass-superclass) defining which attributes and properties classes can have and constraints on their values defining individuals and filling in attribute/property values Ontology engineering is transferring knowledge into a computer accessible form Semantic Web (6) 7

8 Why develop an Ontology? to share common understanding of the structure of information among people among software agents to enable reuse of domain knowledge to avoid re-inventing the wheel to introduce standards to allow interoperability to make domain assumptions explicit easier to change domain assumptions easier to understand and update legacy data to separate domain knowledge from the operational knowledge re-use domain and operational knowledge separately Semantic Web (6) 8

9 Steps in developing an Ontology 1 determine domain and scope what is the domain that the ontology will cover? what we are going to use the ontology for? what types of questions the information in the ontology should provide answers for (competence questions)? 2 informal/semiformal knowledge acquisition collect the terms organise them informally paraphrase and clarify terms to produce informal concept definitions diagram informally 3 refine requirements and tests Semantic Web (6) 9

10 Steps in developing an Ontology (cont.) 4 implementation paraphrase and comment at each stage before implementing develop normalised schema implement prototype recording the intension as a paraphrase scale up a bit and check performance 5 evaluation and quality assurance against goals (ontology design is subjective!) include tests for evolution and change management design regression tests and probes 6 maintenance: usage monitoring and evolution compatibility between different versions of the same ontology and between versions of an ontology and instance data Process not product! Semantic Web (6) 10

11 Example: Animal ontology Purpose and scope: To provide an ontology for an index of a children s book of animals including where they live what they eat (carnivores, herbivores and omnivores) how dangerous they are how big they are a bit of basic anatomy (number of legs, wings, toes, etc.) Semantic Web (6) 11

12 Collect the terms what are the terms we need to talk about? what are the properties of these terms? what do we want to say about the terms? card sorting is often the best way write down each concept/idea on a card organise them into piles link the piles together do it again, and again (works best in a small group) Semantic Web (6) 12

13 Example: Animals and Plants Dog Carnivore Dangerous Cat Plant Pet Cow Animal Domestic Animal Person Draught Animal a Farm Animal Tree Child Food Animal Grass Parent Fish Herbivore Mother Carp Male Father Goldfish Female Pig a used for pulling heavy loads, etc. Semantic Web (6) 13

14 Extend the Concepts Take a group of things and ask what they have in common For example: and then what other siblings there might be Plant, Animal Living Thing (might add Bacteria, Fungi?) Cat, Dog, Cow, Person Mammal (might add Goat, Rabbit?) Cow, Goat, Sheep, Horse Ungulate (hoofed animal) (what others are there? do they divide amongst themselves? even/odd-toed?) Wild, Domestic Domestication (what other states?) Semantic Web (6) 14

15 Organise the Concepts Choose some main axes: add abstractions where needed identify relations identify definable things (e.g., Living Thing, Mammal, Fish) (e.g., eats, owns, parent of) (e.g., Draught Animal, Father, Herbivore) i.e., things where you can say clearly what it means try to define a dog precisely very difficult (a natural kind ) Self-standing things vs. Modifiers self-standing things can exist on their own (roughly nouns) (e.g., people, animals, houses, actions, processes) modifiers modify other things (roughly adjectives and adverbs) (e.g., wild/domestic, male/female, healthy/sick, dangerous/safe) Semantic Web (6) 15

16 Arrange Concepts/Properties into Hierarchy Reorganise everything but definable things into pure trees these will be the primitives self-standing modifiers relations definable LivingThing Animal Mammal Cat Dog Cow Person Pig Fish Carp Goldfish Plant Tree Grass Domestication Domestic Wild Use Pet Food Draught Dangerousness Dangerous Safe Sex Male Female Age Adult Child eats owns parentof... Carnivore Herbivore Child Parent Mother Father FoodAnimal DraughtAnimal Semantic Web (6) 16

17 Defining Classes and a Class Hierarchy Things to remember: there is no single correct class hierarchy but there are some guidelines Question to ask: Is each instance of the subclass an instance of it superclass? Semantic Web (6) 17

18 Defining Classes and a Class Hierarchy (cont.) All the siblings in the class hierarchy must be at the same level of generality (compare to section and subsections in a book) If a class has more than a dozen direct subclasses, additional subcategories may be necessary (compare to bullets in a list) However, if no natural classification exists, the long list may be more natural Class names should be either all singular or all plural (Animal is not a kind-of Animals) Classes represent concepts in the domain, not their names The class name can change, but it will still refer to the same concept (synonym names for the same concept are not different classes) Semantic Web (6) 18

19 Properties Identify the domain and range constraints for properties Animal eats LivingThing (if anything is used in a special way, add a text comment) domain: Animal range: LivingThing (NB: ignore difference between parts of LivingThings and LivingThings) Person owns LivingThing except Person Animal parentof Animal domain: Person range: LivingThing and not Person domain: Animal range: Animal Identify property restrictions: what can we say about all instances of a class? all Cows eat some Plants all Cats eat some Animals all Pigs eat some Animals and eat some Plants... descriptions of self-standing things Semantic Web (6) 19

20 Definable things Paraphrase and formalise the definitions in terms of the primitives, relations and other definables Note any assumptions to be represented elsewhere (add as comments when implementing) A Parent is an Animal that is a parent of some other Animal (NB: ignore Plants for now) Parent = Animal and parentof some Animal A Herbivore is an Animal that eats only Plants (NB: all Animals eat some LivingThings) Herbivore = Animal and eats only Plant An Omnivore is an Animal that eats both Plants and Animals Omnivore = Animal and eats some Plant and eats some Animal Without a paraphrase we cannot tell if we disagree on what you meant to represent and how you represented it. Semantic Web (6) 20

21 Normalisation and Untangling Tree everything (but the root) has one parent strict hierarchy Directed Acyclic Graph (DAG) things can have multiple parents polyhierarchy Normalisation: separate primitives into disjoint trees link the trees with definitions and restrictions let the classifier produce the DAG Trees are easier to manage than DAGs Animal Herbivore Carnivore Mammal Omnivore Cow Cat Dog Person Pig Cow Herbivore Cat Carnivore Animal Dog Mammal Person Omnivore Pig Semantic Web (6) 21

22 Modifiers Identify modifiers that have mutually exclusive values (Domestication, Dangerousness, Sex, Age) NB. Uses are not mutually exclusive (can be both Draught and Food) Extend and complete lists of values (Dangerousness: Dangerous, Risky, Safe) Define a functional property for every such a modifier There are two ways of specifying values for modifiers value partitions (classes that partition a quality) Domestication Domestic Wild Use Pet Food Draught Dangerousness Dangerous Safe Sex Male Female Age Adult Child value sets (individuals that enumerate all states of a quality) Semantic Web (6) 22

23 Specifying Values: Value Partitions Example: a parent quality Dangerousness Define subqualities for each degree: Dangerous, Risky, Safe all subqualities are disjoint subqualities cover parent quality, i.e., Dangerousness = Dangerous or Risky or Safe Define a functional property hasdangerousness range is the parent quality, i.e., Dangerousness domain must be specified separately DangerousAnimal = Animal and hasdangerousness some Dangerous Semantic Web (6) 23

24 Specifying Values: Value Sets Example: a parent quality SexValue Define individuals for each value: male, female values are different (NOT assumed in OWL) value type is enumeration of values, i.e., SexValue = { female, male } Define a functional property hassex range is the parent quality, i.e., SexValue domain must be specified separately MaleAnimal = Animal and hassex is male Semantic Web (6) 24

25 Issues in Specifying Values Value Partitions can be subdivided and specialised fit with philosophical notion of quality space require interpretation to go in databases as values in theory but rarely considered in practice work better with existing classifiers in OWL DL Value Sets cannot be subdivided fit with intuition more similar to databases no interpretation work less well with existing classifiers Semantic Web (6) 25

26 Roles To keep primitives disjoint: need to distinguish the roles things play in different situations pet, farm animal, draught animal from what they are: e.g., professor, student doctor, nurse, patient often need to distinguish qualifications from roles a person may be qualified as a doctor but playing the role of a patient Roles usually summarise relations to play the role of pet is to say that there is somebody for whom the animal is a pet to play the role of doctor is to say that there is somebody for whom the person is acting as the doctor or some situation in which they play that role But we often do not want to explain the situation or relation completely. Semantic Web (6) 26

27 Roles and Untangling Example: DraughtAnimal, FoodAnimal, PetAnimal Identify roles draught: cow, horse, dog food: cow, horse pet: horse, dog Define subclasses of AnimalUseRole: FoodRole PetRole DraughtRole DraughtAnimal = Animal and hasrole some DraughtRole Semantic Web (6) 27

28 Limiting the Scope An ontology should not contain all the possible information about the domain no need to specialise or generalise more than the application requires no need to include all possible properties of a class Example: an ontology of biological experiments contains BiologicalOrganism and Experimenter. Is the class Experimenter a subclass of BiologicalOrganism? Semantic Web (6) 28

29 Summary: Normalised Ontology Development Identify the self-standing primitives (comment any that are not self-evident) Separate them into trees (you may have to create some roles or other auxiliary concepts to do so) Identify the relations Create the descriptions and definitions (comment any that are not self-evident) (provide a paraphrase for each) Identify how key items should be classified (define regression tests) Use classifier to form a DAG Check if tests are satisfied Semantic Web (6) 29

30 Tutorial: Travel agency ontology Use the Protégé editor to define a normalised ontology for use by a travel agency covering the following: Hotel, restaurant, sports, luxury hotel, bed and breakfast, safari, activity, hiking, spa treatment, sunbathing, sightseeing, accommodation rating (three stars, etc.), campground, surfing. Build a class hierarchy and indicate which classes in it are primitive and which are definable. Define the required relations, their properties, domains and ranges as well as individuals. Define the following classes: 1. A two star hotel. 2. A spa resort (i.e., a destination offering a spa treatment). 3. A destination with sport activities but without safari. 4. A destination where all hotels have three star rating. 5. A destinations with at least three restaurants and at least four hotels. Semantic Web (6) 30

Binding Ontologies and Coding Systems to Electronic Health Records and Message

Binding Ontologies and Coding Systems to Electronic Health Records and Message Binding Ontologies and Coding Systems to Electronic Health Records and Message Alan Rector 1, Rahil Qamar 1 & Tom Marley 2 1 University of Manchester 2 University of Salford with acknowledgements to the

More information

When and Why to use a Classifier?

When and Why to use a Classifier? When and Why to use a Classifier? Alan Rector with acknowledgement to Jeremy Rogers, Pieter Zanstra,, & the GALEN Consortium Nick Drummond, Matthew Horridge, Hai Wang in CO-ODE/ ODE/HyOntUSE Information

More information

5. Which word describes the tone of

5. Which word describes the tone of Name: Date: WEEK 14 1 Read the text and then answer the questions. Have you ever wondered about where we get our food? All living things require energy to survive. They receive that energy from food. All

More information

Food Chains and Webs

Food Chains and Webs Food Chains and Webs Let's start with reviewing the parts of a food chain. If you need help, click on the animal. producer consumer decompser If you feel comfortable enough to continue, click here. Plants

More information

Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach

Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach Building a Diseases Symptoms Ontology for Medical Diagnosis: An Integrative Approach Osama Mohammed, Rachid Benlamri and Simon Fong* Department of Software Engineering, Lakehead University, Ontario, Canada

More information

Chapter 4.3: Food Chains and Food Webs

Chapter 4.3: Food Chains and Food Webs Chapter 4.3: Food Chains and Food Webs Food Chains All living things need food. It gives them energy as well as substances they need to build up their body. The sun is the starting point of every food

More information

Phytoplankton Food for Thought

Phytoplankton Food for Thought Phytoplankton Food for Thought Developed by: Evan Smith Adapted from: Carrying Capacity and How Many Bears can Live in This Forest? Project WILD K-12 Curriculum & Activity Guide. Huston, TX: Council for

More information

Fossil Kit Laboratory Investigation 5: Fossil Teeth. Desired Results

Fossil Kit Laboratory Investigation 5: Fossil Teeth. Desired Results Fossil Kit Laboratory Investigation 5: Fossil Teeth Investigation Summary: Students examine and compare fossil and modern teeth. Students use properties of tooth shape and size to identify and interpret

More information

ANIMALS AND THEIR HABITATS: KS2 STUDENT RESOURCES

ANIMALS AND THEIR HABITATS: KS2 STUDENT RESOURCES ANIMALS AND THEIR HABITATS: KS2 STUDENT RESOURCES ANIMALS AND THEIR HABITATS (Lesson 1:1) Living things need Micro habitats Macro habitats Animals Difference? Plants Name: Class: Date: COMPARING ANIMALS

More information

Role Representation Model Using OWL and SWRL

Role Representation Model Using OWL and SWRL Role Representation Model Using OWL and SWRL Kouji Kozaki, Eiichi Sunagawa, Yoshinobu Kitamura, Riichiro Mizoguchi The Institute of Scientific and Industrial Research (ISIR), Osaka University 8-1 Mihogaoka,

More information

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6

Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists. Data and Knowledge Representation Lecture 6 Harvard-MIT Division of Health Sciences and Technology HST.952: Computing for Biomedical Scientists Data and Knowledge Representation Lecture 6 Last Time We Talked About Medical Coding Systems UMLS Today

More information

Do not copy, post, or distribute

Do not copy, post, or distribute 1 CHAPTER LEARNING OBJECTIVES 1. Define science and the scientific method. 2. Describe six steps for engaging in the scientific method. 3. Describe five nonscientific methods of acquiring knowledge. 4.

More information

Deliberating on Ontologies: The Present Situation. Simon Milton Department of Information Systems, The University of Melbourne

Deliberating on Ontologies: The Present Situation. Simon Milton Department of Information Systems, The University of Melbourne Deliberating on Ontologies: The Present Situation Simon Milton Department of, The University of Melbourne 1. Helping data models better map the world 2. Finding the role of ontology where theories of agency

More information

Living Things Need Energy

Living Things Need Energy 2 Living Things Need Energy Key Concept Energy and matter flow between organisms and their environment. What You Will Learn Producers, consumers, and decomposers have specific functions in an ecosystem.

More information

The Food Chain. In order to understand the food chain, there are some vocabulary words you should learn. Look at the words and definitions below.

The Food Chain. In order to understand the food chain, there are some vocabulary words you should learn. Look at the words and definitions below. Non-friction: The Food Chain The Food Chain In order to understand the food chain, there are some vocabulary words you should learn. Look at the words and definitions below. Producer Plants or tiny animals

More information

Defined versus Asserted Classes: Working with the OWL Ontologies. NIF Webinar February 9 th 2010

Defined versus Asserted Classes: Working with the OWL Ontologies. NIF Webinar February 9 th 2010 Defined versus Asserted Classes: Working with the OWL Ontologies NIF Webinar February 9 th 2010 Outline NIFSTD ontologies in brief Multiple vs Single hierarchy of classes/ Asserted vs Inferred classes/primitive

More information

Today is Wednesday, October 28 th, 2015

Today is Wednesday, October 28 th, 2015 In This Lesson: Unit 3 ATP, Autotrophs, Heterotrophs (Lesson 1 of 3) Today is Wednesday, October 28 th, 2015 Pre-Class: How do cells get their energy? Make a list in your notebook of the different ways

More information

Survey of Knowledge Base Content

Survey of Knowledge Base Content Survey of Content Introduction Fundamental Expression Types Top Level Collections Time and Dates Spatial Properties and Relations Event Types Information More Content Areas Copyright 2002 Cycorp This set

More information

An introduction to case finding and outcomes

An introduction to case finding and outcomes An introduction to case finding and outcomes Dr Harshana Liyanage Department of Clinical & Experimental Medicine University of Surrey Wednesday, 25 January 2017 1 Objectives Problems with routine data

More information

Behaviorism: An essential survival tool for practitioners in autism

Behaviorism: An essential survival tool for practitioners in autism Behaviorism: An essential survival tool for practitioners in autism What we re going to do today 1. Review the role of radical behaviorism (RB) James M. Johnston, Ph.D., BCBA-D National Autism Conference

More information

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url:

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url: & Knowledge STIN2103 engineering expert systems Wan Hussain Wan Ishak SOC 2079 Ext.: 4786 Email: hussain@uum.edu.my Url: http://www.wanhussain.com Outline Knowledge Representation Types of knowledge Knowledge

More information

Authoring SNOMED CT Generic Authoring Principles. Penni Hernandez and Cathy Richardson Senior Terminologists

Authoring SNOMED CT Generic Authoring Principles. Penni Hernandez and Cathy Richardson Senior Terminologists Authoring SNOMED CT Generic Authoring Principles Penni Hernandez and Cathy Richardson Senior Terminologists Outline of Tutorial Welcome Examining a request What s been requested Does it belong in SNOMED

More information

Interactive Notebooks

Interactive Notebooks Grade 4 Interactive Notebooks CD-104908 Interactive Notebooks: Science Interactive notebooks are a fun new way to teach and reinforce effective note taking for students of all ages. Students are able to

More information

A Descriptive Delta for Identifying Changes in SNOMED CT

A Descriptive Delta for Identifying Changes in SNOMED CT A Descriptive Delta for Identifying Changes in SNOMED CT Christopher Ochs, Yehoshua Perl, Gai Elhanan Department of Computer Science New Jersey Institute of Technology Newark, NJ, USA {cro3, perl, elhanan}@njit.edu

More information

From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars

From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars Downloaded from vbn.aau.dk on: april 02, 2019 Aalborg Universitet From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars Published in:

More information

Science curriculum: Reception. Working Scientifically - Skills. Plants and Animals

Science curriculum: Reception. Working Scientifically - Skills. Plants and Animals Science curriculum: Working Scientifically - Skills Reception Plants and Animals Identify and name common plants (green plants, wild plants and trees, deciduous and evergreen) Label parts of a plant Identify

More information

S.No. Chapters Page No. 1. Plants Animals Air Activities on Air Water Our Body...

S.No. Chapters Page No. 1. Plants Animals Air Activities on Air Water Our Body... 1 Contents S.No. Chapters Page No. 1. Plants... 1 2. Animals... 7 3. Air... 14 4. Activities on Air... 16 5. Water... 18 6. Our Body... 21 7. Food & Nutrition... 25 8. Safety and First Aid... 28 9. Up

More information

PubMed Tutorial Author: Gökhan Alpaslan DMD,Ph.D. e-vident

PubMed Tutorial Author: Gökhan Alpaslan DMD,Ph.D. e-vident PubMed Tutorial Author: Gökhan Alpaslan DMD,Ph.D e-vident Objectives Introducing Practitioner PubMed Searching for Systematic Reviews Combining Search Terms MeSH Search Outline What is PubMed Searching

More information

Auditing SNOMED Relationships Using a Converse Abstraction Network

Auditing SNOMED Relationships Using a Converse Abstraction Network Auditing SNOMED Relationships Using a Converse Abstraction Network Duo Wei, MS 1, Michael Halper, PhD 2, Gai Elhanan, MD 1, Yan Chen, PhD 3, Yehoshua Perl, PhD 1, James Geller, PhD 1, Kent A. Spackman,

More information

Wriggle and Crawl Medium Term Plan

Wriggle and Crawl Medium Term Plan Wriggle and Crawl Medium Term Plan Subject/ Topic: Science living things, habitats, animals including humans Year Group: 1/2 Date: Summer II 2017 Key questions are differentiated - orange = basic, turquoise

More information

SNOMED CT: Who Needs to Know What?

SNOMED CT: Who Needs to Know What? en40 Original Article SNOMED CT: Who Needs to Know What? Ed Conley 1,2, Tim Benson 1,3 1 Wellcome Trust Sintero Server Project, Cardiff University School of Computer Science & Informatics, UK 2 Severnside

More information

Science through Story

Science through Story Science through Story 2 Science Vocabulary diet enamel healthy calcium unhealthy estimate food groups bacteria float plaque affect reaction 1 Science Vocabulary Developing Children s Communication Skills

More information

Information for Parents/Carers SCIENCE TARGETS - A YEAR 1 SCIENTIST

Information for Parents/Carers SCIENCE TARGETS - A YEAR 1 SCIENTIST SCIENCE TARGETS - A YEAR 1 SCIENTIST Working scientifically (Y1 and Y2) I can ask simple scientific questions. I can use simple equipment to make observations. I can carry out simple tests. I can identify

More information

A Study on a Comparison of Diagnostic Domain between SNOMED CT and Korea Standard Terminology of Medicine. Mijung Kim 1* Abstract

A Study on a Comparison of Diagnostic Domain between SNOMED CT and Korea Standard Terminology of Medicine. Mijung Kim 1* Abstract , pp.49-60 http://dx.doi.org/10.14257/ijdta.2016.9.11.05 A Study on a Comparison of Diagnostic Domain between SNOMED CT and Korea Standard Terminology of Medicine Mijung Kim 1* 1 Dept. Of Health Administration,

More information

WHERE THE UNIT FITS IN VOCABULARY RESOURCES

WHERE THE UNIT FITS IN VOCABULARY RESOURCES KS1 Revised Scheme of Work - Science Unit 2C Variation Science Year 2 ABOUT THE UNIT Through this unit children will become more aware of the huge variety of living things within their local environment

More information

Matter and Energy Transfer

Matter and Energy Transfer Imagine for a moment that you stay after school one day to clean up the classroom. While cleaning, you move some plants away from the sunny windows. A week later, you remember to move the plants back.

More information

Answers to end of chapter questions

Answers to end of chapter questions Answers to end of chapter questions Chapter 1 What are the three most important characteristics of QCA as a method of data analysis? QCA is (1) systematic, (2) flexible, and (3) it reduces data. What are

More information

Observation and Assessment. Narratives

Observation and Assessment. Narratives Observation and Assessment Session #4 Thursday March 02 rd, 2017 Narratives To understand a child we have to watch him at play, study him in his different moods; we cannot project upon him our own prejudices,

More information

Safeguarding adults: mediation and family group conferences: Information for people who use services

Safeguarding adults: mediation and family group conferences: Information for people who use services Safeguarding adults: mediation and family group conferences: Information for people who use services The Social Care Institute for Excellence (SCIE) was established by Government in 2001 to improve social

More information

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework

Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Stepwise Knowledge Acquisition in a Fuzzy Knowledge Representation Framework Thomas E. Rothenfluh 1, Karl Bögl 2, and Klaus-Peter Adlassnig 2 1 Department of Psychology University of Zurich, Zürichbergstraße

More information

Semantic Alignment between ICD-11 and SNOMED-CT. By Marcie Wright RHIA, CHDA, CCS

Semantic Alignment between ICD-11 and SNOMED-CT. By Marcie Wright RHIA, CHDA, CCS Semantic Alignment between ICD-11 and SNOMED-CT By Marcie Wright RHIA, CHDA, CCS World Health Organization (WHO) owns and publishes the International Classification of Diseases (ICD) WHO was entrusted

More information

APA Style. Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre

APA Style. Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre APA Style Or how to present your work in the conventional way that your social science prof is looking for John Hill The Writing Centre What is APA anyway? It stands for The American Psychological Association.

More information

Energy and Food Webs

Energy and Food Webs Energy and Food Webs Food Chains and Webs --- "What's for dinner?" Every organism needs to obtain energy in order to live. For example, plants get energy from the sun, some animals eat plants, and some

More information

Using a grammar implementation to teach writing skills

Using a grammar implementation to teach writing skills Using a grammar implementation to teach writing skills Dan Flickinger CSLI, Stanford University Workshop on Technology Enhanced Learning GWC 2018, Singapore 12 January 2018 Goals Automated error detection

More information

Biomedical resources for text mining

Biomedical resources for text mining August 30, 2005 Workshop Terminologies and ontologies in biomedicine: Can text mining help? Biomedical resources for text mining Olivier Bodenreider Lister Hill National Center for Biomedical Communications

More information

Problem Set 2: Computer Psychiatrist

Problem Set 2: Computer Psychiatrist Due Friday, March 3 Computer Science (1)21b (Spring Term, 2017) Structure and Interpretation of Computer Programs Problem Set 2: Computer Psychiatrist Reading Assignment: Chapter 2, Sections 2.1, 2.2.

More information

Using Scripts to help in Biomedical Text Interpretation

Using Scripts to help in Biomedical Text Interpretation Using Scripts to help in Biomedical Text Interpretation Working Note 30 Peter Clark (peter.e.clark@boeing.com), Boeing Research and Technology, 2009 Introduction This short note speculates on the use of

More information

GASTROINTESTINAL STROMAL TUMOR. cancer that affects the digestive system

GASTROINTESTINAL STROMAL TUMOR. cancer that affects the digestive system Understanding GASTROINTESTINAL STROMAL TUMOR cancer that affects the digestive system GASTROINTESTINAL STROMAL TUMOR About This Guide This guide will: Help you understand gastrointestinal stromal tumor

More information

Term 1 Revision for the Exam

Term 1 Revision for the Exam United Arab Emirates Abu Dhabi Educational Council Int'l Jubilee Private School American Syllabus Student Name: Grade: 5 a,b,c Date: _. 12. 2013 Subject: Science Revision 2 Term 1 Revision for the Exam

More information

Foundations of AI. 10. Knowledge Representation: Modeling with Logic. Concepts, Actions, Time, & All the Rest

Foundations of AI. 10. Knowledge Representation: Modeling with Logic. Concepts, Actions, Time, & All the Rest Foundations of AI 10. Knowledge Representation: Modeling with Logic Concepts, Actions, Time, & All the Rest Wolfram Burgard, Andreas Karwath, Bernhard Nebel, and Martin Riedmiller 10/1 Contents Knowledge

More information

Food Chains and Webs --- "What's for dinner?"

Food Chains and Webs --- What's for dinner? Food Chains and Webs --- "What's for dinner?" Every organism needs to obtain energy in order to live. For example, plants get energy from the sun, some animals eat plants, and some animals eat other animals.

More information

food chains teacher s guide Editors: Brian A. Jerome Ph.D. Stephanie Zak Jerome Assistant Editors: Louise Marrier Josh Hummel Graphics: Fred Thodal

food chains teacher s guide Editors: Brian A. Jerome Ph.D. Stephanie Zak Jerome Assistant Editors: Louise Marrier Josh Hummel Graphics: Fred Thodal www.visuallearningsys.com 1 800 43 8481 Union Street, Brandon, VT 0733 food chains teacher s guide Editors: Brian A. Jerome Ph.D. Stephanie Zak Jerome Assistant Editors: Louise Marrier Josh Hummel Graphics:

More information

SRS Achievement Statements. Science

SRS Achievement Statements. Science SRS Achievement Statements Science Scales SRS Achievement Statements for Science 2018/19 2 Year 1 Achievement Statements Working Scientifically talk about what I see, hear, smell, taste or touch ask you

More information

Chapter 7. Mental Representation

Chapter 7. Mental Representation Chapter 7 Mental Representation Mental Representation Mental representation is a systematic correspondence between some element of a target domain and some element of a modeling (or representation) domain.

More information

Clinical Evidence Framework for Bayesian Networks

Clinical Evidence Framework for Bayesian Networks Clinical Evidence Framework for Bayesian Networks Barbaros Yet 1, Zane B. Perkins 2, Nigel R.M. Tai 3, and D. William R. Marsh 1 1 School of Electronic Engineering and Computer Science, Queen Mary University

More information

LIKE HUMANS, animals must consume

LIKE HUMANS, animals must consume Meeting the Nutritional Needs of Animals LIKE HUMANS, animals must consume food to survive, grow, and reproduce. Food provides nutrition to meet the varying needs of different animals. Some animals require

More information

ONTOLOGY. elearnig INITIATIVE PRAISE: Version number 1.0. Peer Review Network Applying Intelligence to Social Work Education

ONTOLOGY. elearnig INITIATIVE PRAISE: Version number 1.0. Peer Review Network Applying Intelligence to Social Work Education elearnig INITIATIVE PRAISE: Peer Review Network Applying Intelligence to Social Work Education Grant agreement number: 2003-4724 / 001-001 EDU - ELEARN ONTOLOGY Version number 1.0 30.10.2005 Executive

More information

Science 7 Chapter 2 Section 1

Science 7 Chapter 2 Section 1 Science 7 Chapter 2 Section 1 T Y P E S O F I N T E R A C T I O N S Everything is connected One of the key ideas in ecology is that everything is connected to everything else. Each part of the environment

More information

This is the knowledge that you should understand upon completing this section:

This is the knowledge that you should understand upon completing this section: MULTICELLULAR ORGANISMS 5 SYLLABUS CHECKLIST This is the knowledge that you should understand upon completing this section: 5.1 CELLS, TISSUES, ORGANS AND SYSTEMS Multicellular organisms have a hierarchical

More information

Never P alone: The value of estimates and confidence intervals

Never P alone: The value of estimates and confidence intervals Never P alone: The value of estimates and confidence Tom Lang Tom Lang Communications and Training International, Kirkland, WA, USA Correspondence to: Tom Lang 10003 NE 115th Lane Kirkland, WA 98933 USA

More information

Timing Your Research Career & Publishing Addiction Medicine

Timing Your Research Career & Publishing Addiction Medicine Timing Your Research Career & Publishing Addiction Medicine Jeffrey H. Samet, MD, MA, MPH Chief, General Internal Medicine John Noble MD Professor in General Internal Medicine & Professor of Public Health

More information

After you read this section, you should be able to answer these questions:

After you read this section, you should be able to answer these questions: CHAPTER 17 1 The Nervous System SECTION Communication and Control 7.5.a, 7.5.b California Science Standards BEFORE YOU READ After you read this section, you should be able to answer these questions: What

More information

Swadesh wordlist, categorised by semantic field.

Swadesh wordlist, categorised by semantic field. Swadesh wordlist, categorised by semantic field. 1. big adjective 2. long adjective 3. wide adjective 4. thick adjective 5. heavy adjective 6. small adjective 7. short adjective 8. narrow adjective 9.

More information

Mining Human-Place Interaction Patterns from Location-Based Social Networks to Enrich Place Categorization Systems

Mining Human-Place Interaction Patterns from Location-Based Social Networks to Enrich Place Categorization Systems Mining Human-Place Interaction Patterns from Location-Based Social Networks to Enrich Place Categorization Systems Yingjie Hu, Grant McKenzie, Krzysztof Janowicz, Song Gao STKO Lab, Department of Geography,

More information

Bobo the Bear Song. Activity Guide. and.

Bobo the Bear Song. Activity Guide. and. Bobo the Bear Song and Activity Guide lbaum@turtlepeakconsulting.com BOBO THE BEAR (THE HIBERNATION SONG) Hy Zaret/Lou Singer 1 Lyrics and text by Hy Zaret Music by Lou Singer 1961 Argosy Music Corp. (SESAC).

More information

Name: Multiple Choice. Mark your answers on this test. Then carefully transfer your answers to the scan sheet provided

Name: Multiple Choice. Mark your answers on this test. Then carefully transfer your answers to the scan sheet provided Science 7 Name: Section: Mid-Term Review WS Date: Multiple Choice. Mark your answers on this test. Then carefully transfer your answers to the scan sheet provided 1. The diagram below represents four organisms.

More information

University of Oregon HEDCO Clinic Fluency Center. Diagnostic Intake Form for Adults Who Stutter

University of Oregon HEDCO Clinic Fluency Center. Diagnostic Intake Form for Adults Who Stutter University of Oregon HEDCO Clinic Fluency Center Phone 541-346-0923 Fax 541-346-6772 Physical Address: Mailing Address: HEDCO Education Complex HEDCO Clinic 1655 Alder Street, Eugene, OR 97403 5207 University

More information

Special Educational Needs (SEN) HANDS-ON REPTILES

Special Educational Needs (SEN) HANDS-ON REPTILES Special Educational Needs (SEN) HANDS-ON REPTILES General points about this talk: This is a fun interactive talk which includes the opportunity to touch some reptiles. This talk generally lasts 30 minutes

More information

Research Scholar, Department of Computer Science and Engineering Man onmaniam Sundaranar University, Thirunelveli, Tamilnadu, India.

Research Scholar, Department of Computer Science and Engineering Man onmaniam Sundaranar University, Thirunelveli, Tamilnadu, India. DEVELOPMENT AND VALIDATION OF ONTOLOGY BASED KNOWLEDGE REPRESENTATION FOR BRAIN TUMOUR DIAGNOSIS AND TREATMENT 1 1 S. Senthilkumar, 2 G. Tholkapia Arasu 1 Research Scholar, Department of Computer Science

More information

2014 National Curriculum Science Band 1

2014 National Curriculum Science Band 1 2014 National Curriculum Science Band 1 ask simple questions and recognise that they can be answered in different ways (Year 1 variety of common animals including fish, amphibians, reptiles, birds and

More information

Chapter 12 Conclusions and Outlook

Chapter 12 Conclusions and Outlook Chapter 12 Conclusions and Outlook In this book research in clinical text mining from the early days in 1970 up to now (2017) has been compiled. This book provided information on paper based patient record

More information

What Science Is and Is Not

What Science Is and Is Not What Is Science? Key Questions What are the goals of science? What procedures are at the core of scientific methodology? Vocabulary science observation inference hypothesis controlled experiment independent

More information

Coping with Cancer. Patient Education Cancer Programs. Feeling in Control

Coping with Cancer. Patient Education Cancer Programs. Feeling in Control Patient Education Coping with Cancer Many patients find that their first challenge is to feel in control of life again. These resources and tips may help. You can do it! Feeling in control Managing information

More information

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful.

You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. icausalbayes USER MANUAL INTRODUCTION You can use this app to build a causal Bayesian network and experiment with inferences. We hope you ll find it interesting and helpful. We expect most of our users

More information

How do Categories Work?

How do Categories Work? Presentations Logistics Think about what you want to do Thursday we ll informally sign up, see if we can reach consensus. Topics Linear representations of classes Non-linear representations of classes

More information

Food Chains and Webs --- "What's for dinner?"

Food Chains and Webs --- What's for dinner? Food Chains and Webs --- "What's for dinner?" Every organism needs to obtain energy in order to live. For example, plants get energy from the sun, some animals eat plants, and some animals eat other animals.

More information

Hypothesis-Driven Research

Hypothesis-Driven Research Hypothesis-Driven Research Research types Descriptive science: observe, describe and categorize the facts Discovery science: measure variables to decide general patterns based on inductive reasoning Hypothesis-driven

More information

SURVEY/POSTTEST STRUCTURES OF LIFE

SURVEY/POSTTEST STRUCTURES OF LIFE Date 1. When there are signs that a plant has started to grow, we say the seed has. A generated B swelled C condensed D germinated 2. a. Write X next to each of the things a plant needs from the environment

More information

TKT CLIL LESSON PLAN

TKT CLIL LESSON PLAN TKT CLIL LESSON PLAN Teacher s name Date Agostini Samanta 19 th May Time 9.00 10.00 (Activity 1 and 2) The observer will be present during this lesson. I will develop activity 2 and 3 in the next two lessons.

More information

A Lexical-Ontological Resource forconsumerheathcare

A Lexical-Ontological Resource forconsumerheathcare A Lexical-Ontological Resource forconsumerheathcare Elena Cardillo FBK-IRST, Via Sommarive 18, 38123 Trento, Italy cardillo@fbk.eu Abstract. In Consumer Healthcare Informatics it is still difficult for

More information

Biology & The Characteristics of Life

Biology & The Characteristics of Life Biology & The Characteristics of Life Name: Period: Date: I. What is BIOLOGY? The study of WHAT IS THE VALUE OF BIOLOGY? Biological principles are daily being applied for the in controlling disease, improving

More information

An OWL Ontology of Norms and Normative Judgements

An OWL Ontology of Norms and Normative Judgements An OWL Ontology of Norms and Normative Judgements Rossella Rubino, Antonino Rotolo, Giovanni Sartor CIRSFID, Alma Mater Studiorum - Università di Bologna Via Galliera, 3, I-40121 Bologna, Italy Law Department,

More information

Part A: Fluency Assessment

Part A: Fluency Assessment Part A: Fluency Assessment This reading assessment will help you determine if your child is ready for the reading, comprehension, and analysis that will be required in Moving Beyond the Page s 7-9 age

More information

This nonfiction book

This nonfiction book This nonfiction book presents basic facts about ears and hearing in both people and animals. Diagrams help simplify challenging concepts. Interesting details about animals ears are supported by photos

More information

Safe and Economic Re-Use of Ontologies: A Logic-Based Methodology and Tool Support

Safe and Economic Re-Use of Ontologies: A Logic-Based Methodology and Tool Support Safe and Economic Re-Use of Ontologies: A Logic-Based Methodology and Tool Support Ernesto Jiménez-Ruiz 1 Bernardo Cuenca Grau 2 Ulrike Sattler 3 Thomas Schneider 3 Rafael Berlanga 1 1 Computer Languages

More information

I am sad. It is big. I set it on the pot. Mom led me to it. Mom gets a hug. Mom will help. It is lost. It is red. My Cap. Name:

I am sad. It is big. I set it on the pot. Mom led me to it. Mom gets a hug. Mom will help. It is lost. It is red. My Cap. Name: My Cap It is red. It is big. I set it on the pot. It is lost. I am sad. Mom will help. Mom led me to it. Mom gets a hug. 2 5 8 14 17 20 23 28 32 Day 1: What color is my cap? Day 2: What happened to my

More information

World History: Grade 9 Unit 1.1: Lesson 2 A Modern Perspective on the Origins of the World

World History: Grade 9 Unit 1.1: Lesson 2 A Modern Perspective on the Origins of the World World History: Grade 9 Unit 1.1: Lesson 2 A Modern Perspective on the Origins of the World Unit 1.1 Lesson 2: A Modern Perspective on the Origins of the World M.T. Donkin Unit Objectives: 1. Explain why

More information

Plugged into the Semantic Web. While searching and browsing resources of interest were unable to contextualize what it is we

Plugged into the Semantic Web. While searching and browsing resources of interest were unable to contextualize what it is we Puszcz 1 Kevin Puszcz Professor Culik Composition 1190 7 October 2012 Plugged into the Semantic Web Credibility lies in the eye of the beholder and through the web our intuition is distorted. While searching

More information

Copyright Warning & Restrictions

Copyright Warning & Restrictions Copyright Warning & Restrictions The copyright law of the United States (Title 17, United States Code) governs the making of photocopies or other reproductions of copyrighted material. Under certain conditions

More information

Food Chains and Food Webs

Food Chains and Food Webs Program Support Notes by: Spiro Liacos B.Ed. Produced by: VEA Pty Ltd Commissioning Editor: Sandra Frerichs B.Ed, M.Ed. Executive Producers: Edwina Baden-Powell B.A, CVP. Sandra Frerichs B.Ed, M.Ed. You

More information

MASTER Digestion and Nutrition: Week 2 of 2

MASTER Digestion and Nutrition: Week 2 of 2 The Minnesota Literacy Council created this curriculum with funding from the MN Department of Education. We invite you to adapt it for your own classrooms. MASTER Digestion and Nutrition: Week 2 of 2 Unit

More information

Indices, Meaning and Topic Maps: Some Observations

Indices, Meaning and Topic Maps: Some Observations Indices, Meaning and Topic Maps: Some Observations Thea Miller (University of Toronto, Canada) Hendrik Thomas (Technische Universität of Ilmenau, Germany) 1 Thea Miller doctoral candidate at the Faculty

More information

Comparative Neuroanatomy (CNA) Evaluation Post-Test

Comparative Neuroanatomy (CNA) Evaluation Post-Test Comparative Neuroanatomy (CNA) Evaluation Post-Test FORM (F1) I am taking the following test: (a) Comparative Neuroanatomy Pre-Test (b) Comparative Neuroanatomy Post-Test If you are taking the Comparative

More information

WELSH INFORMATION STANDARDS BOARD

WELSH INFORMATION STANDARDS BOARD WELSH INFORMATION STANDARDS BOARD DSC Notice: DSCN 2018 / 06 Date of Issue: 8 th August 2018 Welsh Health Circular / Official Letter: (2015) 053 Subject: CT Maturity Matrix Sponsor: Chris Newbrook, Head

More information

Making Sense of Measures of Center

Making Sense of Measures of Center Making Sense of Measures of Center Statistics are numbers that are part of your everyday world. They are used in reporting on baseball, basketball, football, soccer, the Olympics, and other sports. Statistics

More information

This week s issue: UNIT Word Generation. export symbolic domestic integrate efficient

This week s issue: UNIT Word Generation. export symbolic domestic integrate efficient Word Generation UNIT 3.10 This week s issue: Could the American tradition of eating meat be hurting the earth? Raising animals and transporting meat creates almost one-fifth of the earth s greenhouse gases.

More information

ORC: an Ontology Reasoning Component for Diabetes

ORC: an Ontology Reasoning Component for Diabetes ORC: an Ontology Reasoning Component for Diabetes Özgür Kafalı 1, Michal Sindlar 2, Tom van der Weide 2 and Kostas Stathis 1 1 Department of Computer Science Royal Holloway, University of London, UK {ozgur.kafali,kostas.stathis}@rhul.ac.uk

More information

Barlows Primary School Science Curriculum Content Key Stage 1 and

Barlows Primary School Science Curriculum Content Key Stage 1 and Science Curriculum Content Key Stage 1 and 2 2017-2018 Curriculum Content Year 1 Curriculum. The content for Year 1 is detailed below: During year 1, pupils should be taught to use the following practical

More information

Subject: E.V.S.E.CW.

Subject: E.V.S.E.CW. Std:III rd. Subject: E.V.S.E.CW. Sl.no. Title. Peg No 1) The Living and non The living. 2 2) Living things Around us. 3 3) The World animals. 4-5 4) Environment Around us. 5-6 5) Our sense organ. 6-7 6)

More information

Chapter 7: Descriptive Statistics

Chapter 7: Descriptive Statistics Chapter Overview Chapter 7 provides an introduction to basic strategies for describing groups statistically. Statistical concepts around normal distributions are discussed. The statistical procedures of

More information