SlideShare ist ein Scribd-Unternehmen logo
1 von 62
UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja Sistemas Basados en el Conocimiento TripletasRDF Luis Eduardo Cuenca Hurtado E-mail: ledu1985@gmail.com
RDF RDF (Resource Description Framework) Es especificaciones de la W3C, originalmente diseñada como un modelo de metadatos, pero se ha vuelto un método general para el modelado de información. Permite describir metadatos en sitios web, proveyendo interoperatibilidad entre las aplicaciones que intercambian información en lenguaje máquina por la web. Es uno de los vocabularios de XML que mas se ha hecho sentir últimamente RDF permite detallar información como el mapa de un sitio, fechas de actualizaciones de páginas, palabras claves, derechos de autoría, etc.
RDF - CLASES Básicas  ,[object Object]
rdfs:Resourcees la clase a la que pertenecen todos los recursos.
rdfs:Literal es la clase de todos los valores literales, cadenas y enteros.
rdfs:Datatype es la clase que abarca los tipos de datos definidos en el modelo RDF.Definen relaciones ,[object Object]
rdfs:subPropertyOfes una instancia de rdf:Property que permite definir jerarquías de propiedades.,[object Object]
rdfs:range es una instancia de rdf:Property que especifica el rango de una propiedad P, rdfs:range..,[object Object]
rdfs:ConstraintProperties, es la clase que contiene todas las propiedades que definen reestricciones. Sus instancias son rdfs:range y rdfs:domain.
rdfs:seeAlso, es una instancia de rdf:Property que relaciona un recurso con otro que proporciona información adicional sobre el primero.
rdfs:isDefinedBy, es una instancia de rdf:Property para relacionar un recurso con los lugares donde se encuentra el recurso sujeto.
rdfs:label, es una instancia de rdf:Property que se usa para proporcionar una versión claramente entendible del nombre de un recurso.
rdfs:comment, es una instancia de rdf:Property que se usa para proporcionar una descripción de un recurso.,[object Object]
Ontología …… La ontología desarrollada no contiene temimos científicos en cantidad, esto es debido a que no todas las personas estamos relacionados con dichos temas. Por tal motivo la he desarrollado en un lenguaje natural para que pueda ser entendida por personas que conocen y desconocen del tema.
RDF
CLASES
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl=http://www.w3.org/2002/07/owl# …………………………….      ……………………………..     …………………………… </rdf:RDF> TripletasRDF…….. Código general paracrearlastripletas Código RDF
TripletasRDF Código…….. Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">     <owl:Classrdf:about="http://localhost/default#TALLOS" />   <owl:Classrdf:about="http://localhost/default#tamaño">   <rdfs:subClassOfrdf:resource="http://localhost/default#árboles" />    <rdfs:subClassOfrdf:resource="http://localhost/default#matas" />   <rdfs:subClassOf>  <rdf:Descriptionrdf:about="http://localhost/default#arbustos">   <j.1:be rdf:resource="http://localhost/default#árboles" />    </rdf:Description>   </rdfs:subClassOf>   <rdfs:subClassOfrdf:resource="http://localhost/default#hierbas" />    </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Tripletas RDF
Tripletas RDF Código….. Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">      <owl:Classrdf:about="http://localhost/default#AGRIOS">   <j.1:be rdf:datatype="xsd:string">LIMON</j.1:be>    </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Gráfico del modelo de datos Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">      <owl:Classrdf:about="http://localhost/default#medicinales">   <j.1:be rdf:resource="http://localhost/default#matico" />    <j.1:be rdf:resource="http://localhost/default#manzanilla" />    </owl:Class> </rdf:RDF>
Tripletas RDF Código RDF… <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">      <owl:Classrdf:about="http://localhost/default#PLANTAS">  <rdfs:subClassOf>  <owl:Restriction>   <owl:maxCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:maxCardinality>   <owl:onProperty>   <owl:DatatypePropertyrdf:about="http://localhost/default#TIPO" />    </owl:onProperty>   </owl:Restriction>   </rdfs:subClassOf>  <rdfs:subClassOf>  <owl:Restriction>   <owl:maxCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:maxCardinality>   <owl:onProperty>   <owl:DatatypePropertyrdf:about="http://localhost/default#USO" />    </owl:onProperty>   </owl:Restriction>   </rdfs:subClassOf>  <rdfs:subClassOf>  <owl:Restriction>   <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:cardinality>   <owl:onProperty>   <owl:DatatypePropertyrdf:about="http://localhost/default#ORIGEN" />    </owl:onProperty>   </owl:Restriction>   </rdfs:subClassOf>  <rdfs:subClassOf>  <owl:Restriction>   <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:cardinality>   <owl:onProperty>   <owl:DatatypePropertyrdf:about="http://localhost/default#TAMAÑO" />    </owl:onProperty>   </owl:Restriction>   </rdfs:subClassOf>   </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">    <owl:Classrdf:about="http://localhost/default#DULCES">   <j.1:be rdf:datatype="xsd:string">MANGO</j.1:be>    </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">   <owl:Classrdf:about="http://localhost/default#ornamentales">   <j.1:be rdf:resource="http://localhost/default#orquideas" />    <j.1:be rdf:resource="http://localhost/default#rosas" />    <j.1:be rdf:resource="http://localhost/default#girasoles" />    </owl:Class>  </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">  <owl:Classrdf:about="http://localhost/default#PEQUEÑOS">   <j.1:be rdf:datatype="xsd:string">uva</j.1:be>    <j.1:be rdf:datatype="xsd:string">fresa</j.1:be>    </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">   <owl:Classrdf:about="http://localhost/default#ELEMENTOS">   <rdfs:subClassOfrdf:resource="http://localhost/default#LIMBO" />    <rdfs:subClassOfrdf:resource="http://localhost/default#NERVIO%20PRINCIPAL" />    <rdfs:subClassOfrdf:resource="http://localhost/default#VAINA" />    </owl:Class>   <owl:Classrdf:about="http://www.w3.org/2001/XMLSchema#string" />   <owl:Classrdf:about="http://localhost/default#frutales">   <j.1:be rdf:resource="http://localhost/default#manzanos" />    <j.1:be rdf:resource="http://localhost/default#naranjos" />    </owl:Class> </rdf:RDF>
Tripletas RDF Elementos RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">    <owl:Classrdf:about="http://localhost/default#frutales">   <j.1:be rdf:resource="http://localhost/default#manzanos" />    <j.1:be rdf:resource="http://localhost/default#naranjos" />    </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">   <owl:Classrdf:about="http://localhost/default#acuaticas">   <j.1:be rdf:resource="http://localhost/default#flotantes" />    <j.1:be rdf:resource="http://localhost/default#aguas%20profundas" />   </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">   <owl:Classrdf:about="http://localhost/default#madera">   <j.1:be rdf:resource="http://localhost/default#cedro" />    <j.1:be rdf:resource="http://localhost/default#seique" />    </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">  <owl:Classrdf:about="http://localhost/default#RAIZ" />   <owl:Classrdf:about="http://localhost/default#lugar%20donde%20crecen">   <rdfs:subClassOfrdf:resource="http://localhost/default#terrestres" />    <rdfs:subClassOfrdf:resource="http://localhost/default#acuaticas" />    </owl:Class>  <owl:Classrdf:about="http://localhost/default#GRANDES">   <j.1:be rdf:datatype="xsd:string">PIÑA</j.1:be>    <j.1:be rdf:datatype="xsd:string">PAPAYA</j.1:be>    </owl:Class> </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#">  <owl:Classrdf:about="http://localhost/default#AGUA" />   <owl:Classrdf:about="http://localhost/default#uso">   <rdfs:subClassOfrdf:resource="http://localhost/default#medicinales" />   <rdfs:subClassOf>   <owl:Classrdf:about="http://localhost/default#comestibles" />    </rdfs:subClassOf>   <rdfs:subClassOfrdf:resource="http://localhost/default#madera" />    <rdfs:subClassOfrdf:resource="http://localhost/default#frutales" />    <rdfs:subClassOfrdf:resource="http://localhost/default#ornamentales" />    </owl:Class>   <owl:Classrdf:about="http://localhost/default#FRUTOS" />  </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#absorben">  <owl:inverseOf>   <owl:ObjectPropertyrdf:about="http://localhost/default#FluyeHaciaLa" />    </owl:inverseOf>  <rdfs:range>  <rdf:Descriptionrdf:about="http://localhost/default#MINERALES">   <rdfs:subClassOfrdf:resource="http://localhost/default#HIERRO" />    <rdfs:subClassOfrdf:resource="http://localhost/default#FOSFORO" />    </rdf:Description>   </rdfs:range>   <rdfs:domainrdf:resource="http://localhost/default#RAIZ" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#producen">   <rdfs:rangerdf:resource="http://localhost/default#OXIGENO" />   <rdfs:domain>  <rdf:Descriptionrdf:about="http://localhost/default#HOJAS">   <j.0:le rdf:resource="http://localhost/default#ELEMENTOS" />    <rdfs:subClassOfrdf:resource="http://localhost/default#HERMOSAS" />    </rdf:Description>   </rdfs:domain>   <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#AlgunasTienen">   <rdfs:rangerdf:resource="http://localhost/default#FRUTOS" />    <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty>  <owl:ObjectPropertyrdf:about="http://localhost/default#son">   <rdfs:rangerdf:resource="http://localhost/default#PEQUEÑOS" />    <rdfs:domainrdf:resource="http://localhost/default#FRUTOS" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty>  <owl:ObjectPropertyrdf:about="http://localhost/default#requieren">   <rdfs:rangerdf:resource="http://localhost/default#AGUA" />    <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF
Tripletas RDF
Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#FluyeHaciaLa">   <owl:inverseOfrdf:resource="http://localhost/default#absorben" />    <rdfs:rangerdf:resource="http://localhost/default#RAIZ" />    <rdfs:domainrdf:resource="http://localhost/default#AGUA" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty>  <owl:ObjectPropertyrdf:about="http://localhost/default#tienen">   <rdfs:rangerdf:resource="http://localhost/default#RAIZ" />    <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty>  <owl:ObjectPropertyrdf:about="http://localhost/default#tiene">   <rdfs:rangerdf:resource="http://localhost/default#HOJAS" />    <rdfs:domainrdf:resource="http://localhost/default#TALLOS" />    <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" />    </owl:ObjectProperty> </rdf:RDF>
Tripletas RDF
Tripletas RDF

Weitere ähnliche Inhalte

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Tripletas Luis Eduardo

  • 1. UNIVERSIDAD TÉCNICA PARTICULAR DE LOJA La Universidad Católica de Loja Sistemas Basados en el Conocimiento TripletasRDF Luis Eduardo Cuenca Hurtado E-mail: ledu1985@gmail.com
  • 2. RDF RDF (Resource Description Framework) Es especificaciones de la W3C, originalmente diseñada como un modelo de metadatos, pero se ha vuelto un método general para el modelado de información. Permite describir metadatos en sitios web, proveyendo interoperatibilidad entre las aplicaciones que intercambian información en lenguaje máquina por la web. Es uno de los vocabularios de XML que mas se ha hecho sentir últimamente RDF permite detallar información como el mapa de un sitio, fechas de actualizaciones de páginas, palabras claves, derechos de autoría, etc.
  • 3.
  • 4. rdfs:Resourcees la clase a la que pertenecen todos los recursos.
  • 5. rdfs:Literal es la clase de todos los valores literales, cadenas y enteros.
  • 6.
  • 7.
  • 8.
  • 9. rdfs:ConstraintProperties, es la clase que contiene todas las propiedades que definen reestricciones. Sus instancias son rdfs:range y rdfs:domain.
  • 10. rdfs:seeAlso, es una instancia de rdf:Property que relaciona un recurso con otro que proporciona información adicional sobre el primero.
  • 11. rdfs:isDefinedBy, es una instancia de rdf:Property para relacionar un recurso con los lugares donde se encuentra el recurso sujeto.
  • 12. rdfs:label, es una instancia de rdf:Property que se usa para proporcionar una versión claramente entendible del nombre de un recurso.
  • 13.
  • 14. Ontología …… La ontología desarrollada no contiene temimos científicos en cantidad, esto es debido a que no todas las personas estamos relacionados con dichos temas. Por tal motivo la he desarrollado en un lenguaje natural para que pueda ser entendida por personas que conocen y desconocen del tema.
  • 15. RDF
  • 17. <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl=http://www.w3.org/2002/07/owl# ……………………………. …………………………….. …………………………… </rdf:RDF> TripletasRDF…….. Código general paracrearlastripletas Código RDF
  • 18. TripletasRDF Código…….. Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#TALLOS" /> <owl:Classrdf:about="http://localhost/default#tamaño"> <rdfs:subClassOfrdf:resource="http://localhost/default#árboles" /> <rdfs:subClassOfrdf:resource="http://localhost/default#matas" /> <rdfs:subClassOf> <rdf:Descriptionrdf:about="http://localhost/default#arbustos"> <j.1:be rdf:resource="http://localhost/default#árboles" /> </rdf:Description> </rdfs:subClassOf> <rdfs:subClassOfrdf:resource="http://localhost/default#hierbas" /> </owl:Class> </rdf:RDF>
  • 21. Tripletas RDF Código….. Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#AGRIOS"> <j.1:be rdf:datatype="xsd:string">LIMON</j.1:be> </owl:Class> </rdf:RDF>
  • 23. Gráfico del modelo de datos Tripletas RDF
  • 24. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#medicinales"> <j.1:be rdf:resource="http://localhost/default#matico" /> <j.1:be rdf:resource="http://localhost/default#manzanilla" /> </owl:Class> </rdf:RDF>
  • 25.
  • 26. Tripletas RDF Código RDF… <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#PLANTAS"> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:maxCardinality> <owl:onProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#TIPO" /> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:maxCardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:maxCardinality> <owl:onProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#USO" /> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:cardinality> <owl:onProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#ORIGEN" /> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:cardinalityrdf:datatype="http://www.w3.org/2001/XMLSchema#int">1</owl:cardinality> <owl:onProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#TAMAÑO" /> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> </owl:Class> </rdf:RDF>
  • 30. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#DULCES"> <j.1:be rdf:datatype="xsd:string">MANGO</j.1:be> </owl:Class> </rdf:RDF>
  • 32. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#ornamentales"> <j.1:be rdf:resource="http://localhost/default#orquideas" /> <j.1:be rdf:resource="http://localhost/default#rosas" /> <j.1:be rdf:resource="http://localhost/default#girasoles" /> </owl:Class> </rdf:RDF>
  • 34. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#PEQUEÑOS"> <j.1:be rdf:datatype="xsd:string">uva</j.1:be> <j.1:be rdf:datatype="xsd:string">fresa</j.1:be> </owl:Class> </rdf:RDF>
  • 36. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#ELEMENTOS"> <rdfs:subClassOfrdf:resource="http://localhost/default#LIMBO" /> <rdfs:subClassOfrdf:resource="http://localhost/default#NERVIO%20PRINCIPAL" /> <rdfs:subClassOfrdf:resource="http://localhost/default#VAINA" /> </owl:Class> <owl:Classrdf:about="http://www.w3.org/2001/XMLSchema#string" /> <owl:Classrdf:about="http://localhost/default#frutales"> <j.1:be rdf:resource="http://localhost/default#manzanos" /> <j.1:be rdf:resource="http://localhost/default#naranjos" /> </owl:Class> </rdf:RDF>
  • 39. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#frutales"> <j.1:be rdf:resource="http://localhost/default#manzanos" /> <j.1:be rdf:resource="http://localhost/default#naranjos" /> </owl:Class> </rdf:RDF>
  • 41. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#acuaticas"> <j.1:be rdf:resource="http://localhost/default#flotantes" /> <j.1:be rdf:resource="http://localhost/default#aguas%20profundas" /> </rdf:RDF>
  • 43. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#madera"> <j.1:be rdf:resource="http://localhost/default#cedro" /> <j.1:be rdf:resource="http://localhost/default#seique" /> </owl:Class> </rdf:RDF>
  • 45. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#RAIZ" /> <owl:Classrdf:about="http://localhost/default#lugar%20donde%20crecen"> <rdfs:subClassOfrdf:resource="http://localhost/default#terrestres" /> <rdfs:subClassOfrdf:resource="http://localhost/default#acuaticas" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#GRANDES"> <j.1:be rdf:datatype="xsd:string">PIÑA</j.1:be> <j.1:be rdf:datatype="xsd:string">PAPAYA</j.1:be> </owl:Class> </rdf:RDF>
  • 48. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Classrdf:about="http://localhost/default#AGUA" /> <owl:Classrdf:about="http://localhost/default#uso"> <rdfs:subClassOfrdf:resource="http://localhost/default#medicinales" /> <rdfs:subClassOf> <owl:Classrdf:about="http://localhost/default#comestibles" /> </rdfs:subClassOf> <rdfs:subClassOfrdf:resource="http://localhost/default#madera" /> <rdfs:subClassOfrdf:resource="http://localhost/default#frutales" /> <rdfs:subClassOfrdf:resource="http://localhost/default#ornamentales" /> </owl:Class> <owl:Classrdf:about="http://localhost/default#FRUTOS" /> </rdf:RDF>
  • 51. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#absorben"> <owl:inverseOf> <owl:ObjectPropertyrdf:about="http://localhost/default#FluyeHaciaLa" /> </owl:inverseOf> <rdfs:range> <rdf:Descriptionrdf:about="http://localhost/default#MINERALES"> <rdfs:subClassOfrdf:resource="http://localhost/default#HIERRO" /> <rdfs:subClassOfrdf:resource="http://localhost/default#FOSFORO" /> </rdf:Description> </rdfs:range> <rdfs:domainrdf:resource="http://localhost/default#RAIZ" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> </rdf:RDF>
  • 54. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#producen"> <rdfs:rangerdf:resource="http://localhost/default#OXIGENO" /> <rdfs:domain> <rdf:Descriptionrdf:about="http://localhost/default#HOJAS"> <j.0:le rdf:resource="http://localhost/default#ELEMENTOS" /> <rdfs:subClassOfrdf:resource="http://localhost/default#HERMOSAS" /> </rdf:Description> </rdfs:domain> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> </rdf:RDF>
  • 57. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#AlgunasTienen"> <rdfs:rangerdf:resource="http://localhost/default#FRUTOS" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#son"> <rdfs:rangerdf:resource="http://localhost/default#PEQUEÑOS" /> <rdfs:domainrdf:resource="http://localhost/default#FRUTOS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#requieren"> <rdfs:rangerdf:resource="http://localhost/default#AGUA" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> </rdf:RDF>
  • 60. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#FluyeHaciaLa"> <owl:inverseOfrdf:resource="http://localhost/default#absorben" /> <rdfs:rangerdf:resource="http://localhost/default#RAIZ" /> <rdfs:domainrdf:resource="http://localhost/default#AGUA" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#tienen"> <rdfs:rangerdf:resource="http://localhost/default#RAIZ" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#tiene"> <rdfs:rangerdf:resource="http://localhost/default#HOJAS" /> <rdfs:domainrdf:resource="http://localhost/default#TALLOS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> </rdf:RDF>
  • 63. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:ObjectPropertyrdf:about="http://localhost/default#ClasificadasPor"> <rdfs:rangerdf:resource="http://localhost/default#tamaño" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#RecogidoPor"> <rdfs:rangerdf:resource="http://localhost/default#ABEJAS" /> <rdfs:domainrdf:resource="http://localhost/default#NECTAR" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> <owl:ObjectPropertyrdf:about="http://localhost/default#mediante"> <rdfs:rangerdf:resource="http://localhost/default#FOTOSINTESIS" /> <rdfs:domainrdf:resource="http://localhost/default#OXIGENO" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:ObjectProperty> </rdf:RDF>
  • 66. Tripletas RDF Código RDF <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:DatatypePropertyrdf:about="http://localhost/default#USO"> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:DatatypeProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#ORIGEN"> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:DatatypeProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#TAMAÑO"> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:DatatypeProperty> <owl:DatatypePropertyrdf:about="http://localhost/default#TIPO"> <rdfs:rangerdf:resource="http://www.w3.org/2001/XMLSchema#string" /> <rdfs:domainrdf:resource="http://localhost/default#PLANTAS" /> <rdf:typerdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" /> </owl:DatatypeProperty> <rdf:Descriptionrdf:about="http://localhost/default#FLORES"> <rdfs:subClassOfrdf:resource="http://localhost/default#HERMOSAS" /> </rdf:Description> </rdf:RDF>