Re: Web 3 vs Web 2

2017-06-07 Thread Phillip Rhodes
Tina:

You may also find some useful information in this talk that I gave a
while back, on using SemWeb technologies - specifically including
Apache Jena and Apache Stanbol - in an enterprise setting.

This page links to both the video recording and the slides from the talk.

https://allthingsopen.org/talk/semantic-integration-with-apache-jena-and-stanbol/


Phil

This message optimized for indexing by NSA PRISM


On Wed, Jun 7, 2017 at 10:13 AM, Phillip Rhodes
<motley.crue@gmail.com> wrote:
> I would recommend reading the book "The Explorer's Guide to the Semantic Web".
>
> <https://www.amazon.com/Explorers-Guide-Semantic-Thomas-Passin/dp/1932394206>
>
>
> Phil
>
>
> This message optimized for indexing by NSA PRISM
>
>
> On Wed, Jun 7, 2017 at 8:52 AM, tina sani <tinamadri...@gmail.com> wrote:
>> Thank you Colin and David for your detailed answer.
>>
>> On Wed, Jun 7, 2017 at 3:28 PM, Colin Maudry <co...@maudry.com> wrote:
>>
>>> Hello Tina,
>>>
>>> Thank you very much for your interest for the Semantic Web. This mailling
>>> list is specifically dedicated to a tool, Apache Jena. It's like asking
>>> about astronomy on a list dedicated to a brand of telescopes : it's
>>> off-topic.
>>>
>>> The Wikipedia article about the Semantic Web is a very good start :
>>> https://en.wikipedia.org/wiki/Semantic_Web
>>>
>>> If you're fond off asking humans, I suggest you ask your question to the
>>> following list, you will certainly get more answers :
>>> http://lists.w3.org/Archives/Public/semantic-web/
>>>
>>> Have a nice trip on the paths of the Web of data :)
>>>
>>> Colin
>>>
>>>  Original Message 
>>> Subject: Re: Web 3 vs Web 2
>>> Local Time: June 7, 2017 1:25 PM
>>> UTC Time: June 7, 2017 11:25 AM
>>> From: admo...@gmail.com
>>> To: users@jena.apache.org
>>>
>>> To see the metadata you have to consider the prefix statements that must
>>> be made before you can use the triples in your example/
>>>
>>> @prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
>>>
>>> click on the hyperlink to follow it.
>>>
>>> Using this prefix statement adds metadata essential to understanding the
>>> triple:
>>> Student rdf:type Person
>>>
>>> rdf:type means:
>>> rdf:type a rdf:Property ;
>>> rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
>>> rdfs:label "type" ;
>>> rdfs:comment "The subject is an instance of a class." ;
>>> rdfs:range rdfs:Class ;
>>> rdfs:domain rdfs:Resource .
>>>
>>> The object “Person” in the triple may also have metadata associated with
>>> it.
>>> If the prefix:
>>>
>>> @prefix foaf: http://xmlns.com/foaf/0.1/
>>>
>>> is used the metadata associated with foaf:Person is
>>>
>>> http://xmlns.com/foaf/0.1/Person;
>>> rdfs:label="Person" rdfs:comment="A person." 
>>> vs:term_status="stable">>> rdf:resource="http://www.w3.org/2002/07/owl#Class"/>>> rdf:resource="http://schema.org/Person"/>>> rdf:resource="http://www.w3.org/2000/10/swap/pim/contact#Person"/>http://xmlns.com/foaf/0.1/Agent
>>> "/>http://www.w3.org/
>>> 2003/01/geo/wgs84_pos#SpatialThing" rdfs:label="Spatial
>>> Thing"/>http://xmlns.com/foaf/0.1/"/>http://xmlns.com/foaf/0.1/Organization
>>> "/>http://xmlns.com/foaf/0.1/Project
>>> "/>
>>>
>>> So you can see even a simple statement like
>>>
>>> Student rdf:type foaf:Person
>>>
>>> contains a huge amount of metadata that can be located and used by a
>>> machine!
>>>
>>> On 7/6/17, 1:07 am, "tina sani" <tinamadri...@gmail.com> wrote:
>>>
>>> For example, there is an rdf document about a student.
>>>
>>> Student rdf:type Person. Student hasName name. Student hasAdress adress
>>>
>>> Student study Course.
>>>
>>> Where is the meta data here. How machines understand this data.
>>>


Re: Web 3 vs Web 2

2017-06-07 Thread Phillip Rhodes
I would recommend reading the book "The Explorer's Guide to the Semantic Web".

<https://www.amazon.com/Explorers-Guide-Semantic-Thomas-Passin/dp/1932394206>


Phil


This message optimized for indexing by NSA PRISM


On Wed, Jun 7, 2017 at 8:52 AM, tina sani <tinamadri...@gmail.com> wrote:
> Thank you Colin and David for your detailed answer.
>
> On Wed, Jun 7, 2017 at 3:28 PM, Colin Maudry <co...@maudry.com> wrote:
>
>> Hello Tina,
>>
>> Thank you very much for your interest for the Semantic Web. This mailling
>> list is specifically dedicated to a tool, Apache Jena. It's like asking
>> about astronomy on a list dedicated to a brand of telescopes : it's
>> off-topic.
>>
>> The Wikipedia article about the Semantic Web is a very good start :
>> https://en.wikipedia.org/wiki/Semantic_Web
>>
>> If you're fond off asking humans, I suggest you ask your question to the
>> following list, you will certainly get more answers :
>> http://lists.w3.org/Archives/Public/semantic-web/
>>
>> Have a nice trip on the paths of the Web of data :)
>>
>> Colin
>>
>>  Original Message 
>> Subject: Re: Web 3 vs Web 2
>> Local Time: June 7, 2017 1:25 PM
>> UTC Time: June 7, 2017 11:25 AM
>> From: admo...@gmail.com
>> To: users@jena.apache.org
>>
>> To see the metadata you have to consider the prefix statements that must
>> be made before you can use the triples in your example/
>>
>> @prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
>>
>> click on the hyperlink to follow it.
>>
>> Using this prefix statement adds metadata essential to understanding the
>> triple:
>> Student rdf:type Person
>>
>> rdf:type means:
>> rdf:type a rdf:Property ;
>> rdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;
>> rdfs:label "type" ;
>> rdfs:comment "The subject is an instance of a class." ;
>> rdfs:range rdfs:Class ;
>> rdfs:domain rdfs:Resource .
>>
>> The object “Person” in the triple may also have metadata associated with
>> it.
>> If the prefix:
>>
>> @prefix foaf: http://xmlns.com/foaf/0.1/
>>
>> is used the metadata associated with foaf:Person is
>>
>> http://xmlns.com/foaf/0.1/Person;
>> rdfs:label="Person" rdfs:comment="A person." 
>> vs:term_status="stable">> rdf:resource="http://www.w3.org/2002/07/owl#Class"/>> rdf:resource="http://schema.org/Person"/>> rdf:resource="http://www.w3.org/2000/10/swap/pim/contact#Person"/>http://xmlns.com/foaf/0.1/Agent
>> "/>http://www.w3.org/
>> 2003/01/geo/wgs84_pos#SpatialThing" rdfs:label="Spatial
>> Thing"/>http://xmlns.com/foaf/0.1/"/>http://xmlns.com/foaf/0.1/Organization
>> "/>http://xmlns.com/foaf/0.1/Project
>> "/>
>>
>> So you can see even a simple statement like
>>
>> Student rdf:type foaf:Person
>>
>> contains a huge amount of metadata that can be located and used by a
>> machine!
>>
>> On 7/6/17, 1:07 am, "tina sani" <tinamadri...@gmail.com> wrote:
>>
>> For example, there is an rdf document about a student.
>>
>> Student rdf:type Person. Student hasName name. Student hasAdress adress
>>
>> Student study Course.
>>
>> Where is the meta data here. How machines understand this data.
>>


Re: Web 3 vs Web 2

2017-06-07 Thread David Moss
To see the metadata you have to consider the prefix statements that must be 
made before you can use the triples in your example/

@prefix rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#

click on the hyperlink to follow it.

Using this prefix statement adds metadata essential to understanding the triple:
Student rdf:type Person

rdf:type means:
rdf:type a rdf:Property ;
rdfs:isDefinedBy  ;
rdfs:label "type" ;
rdfs:comment "The subject is an instance of a class." ;
rdfs:range rdfs:Class ;
rdfs:domain rdfs:Resource .

The object “Person” in the triple may also have metadata associated with it.
If the prefix:

@prefix foaf: http://xmlns.com/foaf/0.1/

is used the metadata associated with foaf:Person is

http://xmlns.com/foaf/0.1/Person; rdfs:label="Person" 
rdfs:comment="A person." vs:term_status="stable">http://www.w3.org/2002/07/owl#Class"/>http://schema.org/Person"/>http://www.w3.org/2000/10/swap/pim/contact#Person"/>http://xmlns.com/foaf/0.1/Agent"/>http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing; 
rdfs:label="Spatial Thing"/>http://xmlns.com/foaf/0.1/"/>http://xmlns.com/foaf/0.1/Organization"/>http://xmlns.com/foaf/0.1/Project"/>


So you can see even a simple statement like 

Student rdf:type foaf:Person

contains a huge amount of metadata that can be located and used by a machine!




On 7/6/17, 1:07 am, "tina sani"  wrote:

For example, there is an rdf document about a student.

Student rdf:type Person. Student hasName name.  Student hasAdress adress

Student study Course.

Where is the meta data here. How machines understand this data.

 





Re: Web 3 vs Web 2

2017-06-06 Thread Trevor Lazarus
The metadata is right there for a machine to interpret, for e.g. one could
write a bit of JS for the machine to understand that a URI say
http://domain/student-4321 is a type of foaf:Person and not a Parrot and
based on the Ontology(FOAF in this case) look out for a foaf:name
predicate, with a bit more JS one could program the machine to display the
literal value, say "Samantha" with some fancy HTML+CSS. Similarly one could
program the machine to display the address as both a String formatted
nicely and geocoded into a pair of geospatial coordinates on a Map.

Trevor

On 6 June 2017 at 17:07, tina sani  wrote:

> For example, there is an rdf document about a student.
>
> Student rdf:type Person. Student hasName name.  Student hasAdress adress
>
> Student study Course.
>
> Where is the meta data here. How machines understand this data.
>
> On Mon, Jun 5, 2017 at 1:07 PM, Trevor Lazarus  wrote:
>
> > Greetings Tina,
> >
> > If you come to think about it, what happens to a Web page in Google
> > Search's results listing if you take out Schema.org markup? you're only
> > left with human readable information, this is only from a presentation
> > point of view, think Information Retrieval and this thing called the SW
> > makes a lot of sense to use.
> >
> > Moving on to Inferences, if you used the right Ontology, you could start
> to
> > infer newer facts that we've never stored in the triple store in the
> first
> > place, among many other things
> >
> > It's like Lorenz pointed, you're comparing the Web of Data to a Web of
> > Documents.
> >
> > On 5 June 2017 at 09:18, Trevor Lazarus  wrote:
> >
> > > Greetings Tina,
> > >
> > > If you come to think about it, what happens to a Web page in Google
> > > Search's results listing if you take out Schema.org markup? you're only
> > > left with human readable information, this is only from a presentation
> > > point of view, think Information Retrieval and this thing called the SW
> > > makes a lot of sense to use.
> > >
> > > Moving on to Inferences, if you used the right Ontology, you could
> start
> > > to infer newer facts that we've never stored in the triple store in the
> > > first place, among many other things
> > >
> > > It's like Lorenz pointed, you're comparing the Web of Data to a Web of
> > > Documents.
> > >
> > > On 4 June 2017 at 23:51, tina sani  wrote:
> > >
> > >> Greetings
> > >>
> > >> I want to ask how Semantic Web provides meaning to our data? How it
> > >> differs
> > >> from the current web.
> > >> I will appreciate if some one provide with a simple examples: If we
> > write
> > >> an Ontology and develop Semantic Web application, how it differs from
> a
> > >> simple Java application (without Semantic Web) and a traditional
> > database
> > >> system?
> > >>
> > >
> > >
> >
> > --
> >
> >
> > The information in this email and attachments is privileged and
> > confidential and may not be disclosed without the express permission of
> the
> > sender.  This information is intended only for the use of the individual
> to
> > whom it is addressed.  If you have received this communication in error,
> > your review, dissemination, or copying of this information is prohibited.
> > Please reply to alert me of the error and then delete this email.  Thank
> > you.
> >
>

-- 


The information in this email and attachments is privileged and 
confidential and may not be disclosed without the express permission of the 
sender.  This information is intended only for the use of the individual to 
whom it is addressed.  If you have received this communication in error, 
your review, dissemination, or copying of this information is prohibited.  
Please reply to alert me of the error and then delete this email.  Thank 
you.


Re: Web 3 vs Web 2

2017-06-05 Thread Lorenz B.
Wrong mailing list. And, from my point of view, you're more or less
comparing apples with oranges ...

> Greetings
>
> I want to ask how Semantic Web provides meaning to our data? How it differs
> from the current web.
> I will appreciate if some one provide with a simple examples: If we write
> an Ontology and develop Semantic Web application, how it differs from a
> simple Java application (without Semantic Web) and a traditional database
> system?
>
-- 
Lorenz Bühmann
AKSW group, University of Leipzig
Group: http://aksw.org - semantic web research center



Web 3 vs Web 2

2017-06-04 Thread tina sani
Greetings

I want to ask how Semantic Web provides meaning to our data? How it differs
from the current web.
I will appreciate if some one provide with a simple examples: If we write
an Ontology and develop Semantic Web application, how it differs from a
simple Java application (without Semantic Web) and a traditional database
system?