LarKC WP4+WP6 Teleconference on Reasoning with Noisy Data, 11.00 - 12.00, Oct. 05, 2010

The skype ID of the chair: tonganqn (Gaston's)

Participants

Gaston (VUA), Stanley (Saltlux)

Discussions

Stanley: Cases 4 and 5 can now be solved by changing the SPARQL query.

  PREFIX rsm: <http://www.saltlux.com/rsm#>
  select distinct 
  ?nextLinkID ?nextStartNode ?nextEndNode ?nlAngle 
  where { 
   ?currentLink  rsm:nextLink ?nextLinkID . 
   ?nextLinkID rsm:startNode ?nextStartNode . 
   ?nextLinkID rsm:endNode ?nextEndNode . 
   ?nextLinkID rsm:angle ?nlAngle . 
   FILTER (  ?currentLink != ?nextLinkID )
  }

 PREFIX rsm: <http://www.saltlux.com/rsm#>
 select distinct
 ?nextLinkID ?nextStartNode ?nextEndNode 
 where 
 {
  currentLink rsm:startNode ?currentStartNode .
  currentLink  rsm:endNode ?nextStartNode .
  ?nextStartNode owl:sameAs ?sameNextStartNode . 
  ?nextLinkID rsm:startNode ?sameNextStartNode .
  ?nextLinkID rsm:endNode ?nextEndNode .        
  filter( ?currentStartNode != ?nextEndNode )
 }

  PREFIX rsm: <http://www.saltlux.com/rsm#>
  select distinct 
  ?nextLinkID ?nextStartNode ?nextEndNode 
  where 
  { 
  currentLink  rsm:startNode ?currentStartNode . 
  currentLink  rsm:endNode ?nextStartNode . 
  ?nextLinkID rsm:startNode ?nextStartNode . 
  ?nextLinkID rsm:endNode ?nextEndNode .        
  filter( ?currentStartNode != ?nextEndNode ) 
  }  

Gaston: It could be possible to consider case 3 as a decision problem and solve it using cognitive heuristics. The problem could be phrased as deciding whether to use (the data of) road 1 or 2 to solve a given query. For some queries the road 1 would make more sense whereas for other queries road 2 would be better. The decision on whether to use road 1 or 2 could be based on the type of information that describe both roads.

WP4/Meeting&TeleConf/Minutes/05Oct2010 (last edited 2010-10-13 15:40:14 by GastonTagni)