Archive

Posts Tagged ‘RDF’

RDF/RDFa in Drupal 7 – Stephane Corlosquet presentation from April 2010

November 7, 2010 Leave a comment

A very nice presentation by Stephane Corlosquet from April 2010 titled The RDFa initiative in Drupal 7, and how it will impact the Semantic Web. The slides accompanying the presentation can be found here.

Also, a collection of screencasts on Drupal and RDF/RDFa are available below:

All building on the vision first articulated by Dries Buytaert at Drupalcon Boston 2008.

glenn

Categories: Semantic Web Tags: , , ,

Semantic Web Gang discusses RDF – the “base model” for the Semantic Web

October 19, 2009 2 comments

In a previous post, I provided a link to a video which discusses RDFa – which is a semantic markup syntax for embedding semantics into an XHTML web page.

RDFa, however, is built on top of a more “base” W3C standard called RDF, or the Resource Description Framework. RDF can be understood as both the representation of a model – that is, a graph-based data model – and a syntax. The syntax, in turn, is built on XML.

Paul Miller and the Semantic Gang

I recently came across Paul Miller in his role of moderating sessions at the recent Semantic Technology 2009 conference in San Jose in June. Paul, who is a Technology Evangelist for SemWeb tool provider Talis (correction: Paul is no longer with Talis, and now runs his own consultancy. See Paul’s comment below.), hosts a blog called Cloud of Data, which is a wonderful resource for the emerging Open Linked Data web, and Cloud Computing generally.

Paul also hosts a monthly podcast called the Semantic Web Gang. This is a really great podcast for SemWeb geeks, and regular participants include such industry luminaries as Mills Davis of Project10x, Tom Tague with the Open Calais initiative, Peter Mika of Yahoo! Research, and Alex Iskold from AdaptiveBlue.

October podcast – The Semantic Web Gang discusses RDF

The October podcast from the Semantic Web Gang discusses the role of RDF in the Semantic Web, and to what extent the Semantic Web is predicated on RDF. They also discuss the barrier to adoption that the somewhat verbose RDF can represent for update to semantic technologies, and the need for more user-friendly graph-based modeling tools.

Good stuff.

glenn

Post-relational Data Representations

October 11, 2009 1 comment

In a previous blog post, I made the comment:

I’ll be posting further on the Semantic Web in the coming weeks, and I’ll explore both how graph-like data representation differs from traditional relational modeling, and the benefits such a representation provides over more traditional data modeling approaches.

This post briefly elaborates on this topic by exploring two examples of post-relational data representations.

Key-Value Data Stores

The ReadWriteWeb had an interesting article from February 2009 titled
Is the Relational Database Doomed? If I understand this correctly, the issue here is basically indexing vast amounts of items indexed by a key – for example, documents on the Web.

This data management strategy is the norm for massively scalable indexing requirements. The ReadWriteWeb article discusses key-value data stores in the content of Cloud Computing.

*** Update 1 (11/09)
Interesting comment (comment #2) in the ReadWriteWeb article. Here it is:

There is also a new crop of databases called “graph databases” gaining traction (with a model based on nodes, relationships and properties), one of them being the open-source neo4j (http://neo4j.org).

Using graphs to structure information is very powerful and intuitive.

Exactly! See the section below. Also check out the remaining Comments associated with the ReadWriteWeb article. Fantastic discussion!
*** End Update 1

Graph-like Data Representations

Graph-based data representations (for example, RDF) provide a interesting contrast to traditional relational data modeling approaches, and are critical to the vision of the Semantic Web. Here are some of the key differences between graph-based and relational data representations:

  • “Triple” as the key data contruct – Graph-like data representations (for example, RDF) treat metadata and data the exact same way. Both metadata and data are expressed as a “triple” – a subject-predicate-object relation. The entire graph is nothing but a collection of these “triple” statements.
  • Triples are composed to build the Graph – The database concept of a “join” is accomplished through the flexible “composition” of triple statements. This would appear to be a much more flexible way to “compose” semantic structures dynamically, across multiple disparate data sources with different data representations/semantics.
  • Metadata IS Data – Data and Metadata about “concepts” are both expressed in the same manner – as Triple statements. This provides an extremely flexible and scalable representation of knowledge representation (i.e. data + semantics), because a new data element or metadata dimension can be added by simply adding another triple to the data store.

The above being said, relational data representations still have some important advantages where the data schema is well-known and relatively static. They also tend to be a good choice for transactional systems where the schema for key entities is, again, well-known and non-volatile. However, the schemas are more brittle and less malleable and composable compared to graph-based data representations.

*** Update 2 (11/09)
Here’s another key point about graphs, in contrast to tree-like data representations such as XML, from the Semantic Web Programming book (p. 72):

Graphs do not have roots. Some other representations, for example XML, are tree based. In an XML document, the root element of the tree has a special significance because all the other elements are oriented with respect to the document root. When trying to merge two trees, it can be difficult to determine what the root node should be because the structure of the tree is so important to the overall significance of the data. In an RDF graph, by contrast, no single resource is of any inherent significance as compared to any other.

*** End Update 2

Linked Data Initiative and RDF

A powerful example of the impact of RDF, graph-like data representations is the W3C’s Linked Data initiative. The Linked Data initiative, spearheaded by the Web’s founder Tim Berners-Lee, is an initiative to put data on the Web using URIs and RDF. I’ve blogged about Linked Data in a previous post.

BTW, I love this quote from Tim Berners-Lee in response to a question on how Linked Data relates to the Semantic Web:

“Linked Data is the Semantic Web done as it should be. It is the Web done as it should be.”

The above quote was taken from this article from 2008.

Triple Stories – Key-Value Data Stores for the Semantic Web

Interestingly, a Triple Store is a Key-Value data store purpose-built to manage RDF Triples. Basically, a Triple Store is the Semantic Web’s version of an RDBMS.

In conclusion …

I’ll be commenting more on graph-based data representations in the coming weeks, as well as foundational Semantic Web standards such as RDF and OWL.

glenn