[go: nahoru, domu]

Jump to content

Rule Interchange Format: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Baojie (talk | contribs)
No edit summary
making minor changes since this is now a recommendation; needs further review from an expert
Line 1: Line 1:
The ''Rule Interchange Format''' (RIF) is a standard in development within the [[W3C]] Semantic Web Activity. When completed, it will be a component of the [[semantic web]], along with (principally) [[RDF]] and [[OWL]]. Although originally envisioned by many as a "rules layer" for the semantic web, in reality the design of RIF is based on the observation that there are many "rules languages" in existence, and what is needed is to exchange rules between them.<ref> Kifer, Michael (2008). "[http://www.springerlink.com/content/e7v2802743688216/ Rule Interchange Format: The Framework]". in: Web Reasoning and Rule Systems. ''[[Lecture Notes in Computer Science]]''</ref>
The ''Rule Interchange Format'' (RIF) is a [[W3C Recommendation]]. RIF is part of the infrastructure for the [[semantic web]], along with (principally) [[RDF]] and [[OWL]]. Although originally envisioned by many as a "rules layer" for the semantic web, in reality the design of RIF is based on the observation that there are many "rules languages" in existence, and what is needed is to exchange rules between them.<ref> Kifer, Michael (2008). "[http://www.springerlink.com/content/e7v2802743688216/ Rule Interchange Format: The Framework]". in: Web Reasoning and Rule Systems. ''[[Lecture Notes in Computer Science]]''</ref>


RIF includes three dialects, a Core dialect which is extended into a Basic Logic Dialect (BLD) and Production Rule Dialect (PRD).
RIF includes three dialects, a Core dialect which is extended into a Basic Logic Dialect (BLD) and Production Rule Dialect (PRD)<ref>http://www.w3.org/TR/2010/NOTE-rif-overview-20100622/</ref>.


== History ==
== History ==
Line 7: Line 7:
The RIF working group was chartered in late 2005. Among its goals was drawing in members of the commercial rules marketplace. The working group started with more than 50 members and two chairs drawn from industry, Christian de Sainte Marie of [[ILOG]], and [[Chris Welty]] of [[IBM]]. The charter, to develop an interchange format '''between existing rule systems''' was influenced by a workshop in the spring of 2005 in which it was clear that one rule language would not serve the needs of all interested parties (Dr. Welty described the outcome of the workshop as [[Nash Equilibrium]]<ref> Welty, Chris (2009). "[http://www.w3.org/2005/rules/wiki/images/b/b0/W3C_RIF-CW-9-09.pdf Rule Interchange Format]". Invited presentation to the NY Semantic Web Meetup.</ref>).
The RIF working group was chartered in late 2005. Among its goals was drawing in members of the commercial rules marketplace. The working group started with more than 50 members and two chairs drawn from industry, Christian de Sainte Marie of [[ILOG]], and [[Chris Welty]] of [[IBM]]. The charter, to develop an interchange format '''between existing rule systems''' was influenced by a workshop in the spring of 2005 in which it was clear that one rule language would not serve the needs of all interested parties (Dr. Welty described the outcome of the workshop as [[Nash Equilibrium]]<ref> Welty, Chris (2009). "[http://www.w3.org/2005/rules/wiki/images/b/b0/W3C_RIF-CW-9-09.pdf Rule Interchange Format]". Invited presentation to the NY Semantic Web Meetup.</ref>).


RIF became a [[W3C Recommendation]] on June 22, 2010.
RIF became a [[W3C Recommendation]] on June 22, 2010<ref>http://www.w3.org/TR/2010/REC-rif-core-20100622/</ref>.


== Rules and Rule Systems ==
== Rules and Rule Systems ==


A rule is perhaps one of the simplest notions in computer science, it is an IF - THEN construct. If some condition (the IF part) that is checkable in some dataset holds, then the conclusion (the THEN part) is processed. Deriving somewhat from its roots in [[Logic]], rule systems use a notion of predicates that hold or not of some data object or objects. For example, the fact that two people are married might be represented with predicates as ''MARRIED(LISA,JOHN)''. ''MARRIED'' is a predicate that can be said to ''hold'' between ''LISA'' and ''JOHN''. Adding the notion of variables, a rule could be something like:
A ''rule'' is perhaps one of the simplest notions in computer science: it is an IF - THEN construct. If some condition (the IF part) that is checkable in some dataset holds, then the conclusion (the THEN part) is processed. Deriving somewhat from its roots in [[Logic]], rule systems use a notion of predicates that hold or not of some data object or objects. For example, the fact that two people are married might be represented with predicates as ''MARRIED(LISA,JOHN)''. ''MARRIED'' is a predicate that can be said to ''hold'' between ''LISA'' and ''JOHN''. Adding the notion of variables, a rule could be something like:


IF ''MARRIED(?x, ?y)'' THEN ''LOVES(?x, ?y)''
IF ''MARRIED(?x, ?y)'' THEN ''LOVES(?x, ?y)''

Revision as of 11:53, 31 July 2010

The Rule Interchange Format (RIF) is a W3C Recommendation. RIF is part of the infrastructure for the semantic web, along with (principally) RDF and OWL. Although originally envisioned by many as a "rules layer" for the semantic web, in reality the design of RIF is based on the observation that there are many "rules languages" in existence, and what is needed is to exchange rules between them.[1]

RIF includes three dialects, a Core dialect which is extended into a Basic Logic Dialect (BLD) and Production Rule Dialect (PRD)[2].

History

The RIF working group was chartered in late 2005. Among its goals was drawing in members of the commercial rules marketplace. The working group started with more than 50 members and two chairs drawn from industry, Christian de Sainte Marie of ILOG, and Chris Welty of IBM. The charter, to develop an interchange format between existing rule systems was influenced by a workshop in the spring of 2005 in which it was clear that one rule language would not serve the needs of all interested parties (Dr. Welty described the outcome of the workshop as Nash Equilibrium[3]).

RIF became a W3C Recommendation on June 22, 2010[4].

Rules and Rule Systems

A rule is perhaps one of the simplest notions in computer science: it is an IF - THEN construct. If some condition (the IF part) that is checkable in some dataset holds, then the conclusion (the THEN part) is processed. Deriving somewhat from its roots in Logic, rule systems use a notion of predicates that hold or not of some data object or objects. For example, the fact that two people are married might be represented with predicates as MARRIED(LISA,JOHN). MARRIED is a predicate that can be said to hold between LISA and JOHN. Adding the notion of variables, a rule could be something like:

IF MARRIED(?x, ?y) THEN LOVES(?x, ?y)

We would expect that for every pair of ?x and ?y (e.g. LISA and JOHN) for which the MARRIED predicate holds, some computer system that could understand this rule would conclude that the LOVES predicate holds for that pair as well.

Rules are a simple way of encoding knowledge, and are a drastic simplification of First Order Logic for which it is relatively easy to implement inference engines that can process the conditions and draw the right conclusions. A rule system is an implementation of a particular syntax and semantics of rules, which may extend the simple notion described above to include existential quantification, disjunction, logical conjunction, negation, functions, non monotonicity, and many other features. Rule systems have been implemented and studied since the mid-1970s and saw significant uptake in the 1980s during the height of so-called Expert Systems.

Standard RIF Dialects

The standard RIF dialects are Core, BLD and PRD. These dialects depend on an extensive list of datatypes with builtin functions and predicates on those datatypes.

Relations of various RIF dialects are shown in the following Venn diagram[5].

File:RIF DIALECTS VENN.jpg

DTB

Datatypes and Built-Ins (DTB) specifies a list of datatypes, built-in functions and built-in predicates expected to be supported by RIF dialects. Some of the datatypes are adapted from XML Schema Datatypes[6], XPath functions[7] and rdf:PlainLiteral functions [8].

Core

The Core dialect comprises a common subset of most rule dialect. RIF-Core is a subset of both RIF-BLD and RIF-PRD.

FLD

Framework for Logic Dialects (FLD) describes mechanisms for specifying the syntax and semantics of logic RIF dialects, including the RIF-BLD and RIF-Core, but not RIF-PRD which is not a logic-based RIF dialect.

BLD

The Basic Logic Dialect (BLD) adds features to the Core dialect that are not directly available such as: logic functions, equality in the then-part and named arguments

RIF-BLD has a model-theoretic semantics.

PRD

The Production Rules Dialect (PRD) can be used to model production rules. Notably features in PRD but not BLD include negation and retraction of facts (thus, PRD is not monotonic). PRD rules are order dependent, hence conflict resolution strategies are needed when multiple rules can be fired. The PRD specification defines one such resolution strategy based on forward-chaining reasoning.

RIF-PRD has a operational semantics, whereas the condition formulas also have a model-theoretic semantics.

Example (Example 1.2 in [9])

Prefix(ex <http://example.com/2008/prd1#>)
(* ex:rule_1 *)
Forall ?customer ?purchasesYTD (
 If   And( ?customer#ex:Customer
           ?customer[ex:purchasesYTD->?purchasesYTD]
           External(pred:numeric-greater-than(?purchasesYTD 5000)) )
 Then Do( Modify(?customer[ex:status->"Gold"]) ) )

Non-standard RIF Dialects

Several other RIF dialects exist. None of them is officially endorsed by W3C and is not part of the RIF specification.

CASPD

The Core Answer Set Programming Dialect (CASPD)[10] is based on Answer Set Programming, that is, declarative logic programming based on the answer set semantics (stable model semantics).

Example:

Document(
      Prefix(ex <http://example.com/concepts#>)

      Group (
          Forall ?S (
              ex:afraid(?S ex:Math) :- And ( ?S#ex:Student (Naf Neg ex:afraid(?S ex:Math)) )
	  )
      
	  Forall ?S (
	      Neg ex:afraid(?S ex:Math) :- And ( ?S#ex:Student ?S[ex:majors -> ex:Math] )
	  )
      )

URD

The Uncertainty Rule Dialect (URD)[11] supports a direct representation of uncertain knowledge.

Example:

Document( 
  Import (<http://example.org/fuzzy/membershipfunction >) 
  Group 
  ( 
    Forall ?x ?y( 
        cheapFlight(?x ?y) :- affordableFlight(?x ?y) 
    )  / 0.4 
    Forall ?x ?y(affordableFlight(?x ?y))  / left_shoulder0k4k1k3k(?y) 
  )    ) 

SILK

RIF-SILK[12] can be used to model default logic. It is based on declarative logic programming with the well-founded semantics. RIF-SILK also includes a number of other features present in more sophisticated declarative logic programming languages such as SILK[13].

Example

Document {
      Prefix(foaf http://xmlns.com/foaf/0.1/)
      Prefix(pub http://example.org/pub#)
      Prefix(silk http://TBD/silk#)
      Group {
        (* r1 *) Forall ?a1 ?a2 ?paper 
                 (?a1[foaf:knows->?a2] 
                  :- ?paper # pub:Publication[pub:author->?a1,
      					  pub:author->?a2}])
        (* r2 *) Forall ?a1 ?a2
                 (neg ?a1[foaf:knows->?a2] 
                  :- ?a1[hasNeverMet->?a2])
        silk:overrides(r2, r1)
      }
}

See also

References

External links