yuns

[Protege 기초 실습4] Object Property - Property Characteristics 본문

protege

[Protege 기초 실습4] Object Property - Property Characteristics

yuuuun 2022. 12. 23. 18:56
반응형

무료 오픈 소스 온톨로지 편집기 실습 - Ontology에 Object Property 특성

tutorial을 보고 실습을 진행해보고자 한다.

    • Functional Properties
      • 속성을 통해 개인과 관련된 개인은 최대 하나 
      • 단일 값 속성 및 기능 역할

  • Inverse Functional Properties
    • 반대 관계
    • 예) isBirthMotherOf <-> hasBirthMother
    •  
  • Transitive Properties
    • a -> b, b -> c then a -> c
    • 예) Matthew hasAncestor Peter, Peter hasAncestor William 
      • Matthew hasAncestor William
  • Symmetric Properties
    • a -> property1 -> b, b -> property1 -> a => symmetric
    •  
  • 특징 정리
    • If a property is transitive then its inverse property should also be transitive
  • 실습
    • 아래와 같이
      • hasIngredient, IsIngredientOf는 Transitive를 선택
      • hasBase는 Functional 선택

  • Asymetric(비대칭) 
    • a -> property1 -> b but NOT b -> property1 -> a
  • Reflexive(반사적)
    • 객체가 property를 활용해 자기자신을 참조할 때 
    • Irreflexive: Alice -> isMotherOf -> Alice
반응형
Comments