Questions tagged [triples]

A triple is an assertion of the form subject-predicate-object, for example [JohnSmith-brotherOf-JaneSmith], and [JaneSmith-hasAge-"34"]. Assertions (binary relations) of this type form the basis of the Semantic Web languages RDF and OWL. Triples can be interlinked if the object of one triple is the subject of another. Databases designed to manage such assertions are often called triplestores.

More Information

List of subject-predicate-object databases

141 questions
3
votes
1 answer

What is the difference owl:oneof and onto:oneof support in owlim?

this is the builtin_owl2-rl.pie line 361 // Part 1 of cls_oo Id: cls_oo_1 c x ------------------ c x [Context ] // Part 2 of cls_oo Id: cls_oo_2 c
isaac Lee
  • 111
  • 5
2
votes
1 answer

SPARQL DELETE query Error: EOF while parsing

I'm trying to delete some triples using this query: deleteQuery = """DELETE { ?a ?b ?c } WHERE { mynamespace:List mynamespace:Item ?c. ?a ?b ?c }""" My namespace is already defined, so that's not an issue. I'm not sure if I am using the correct…
John Thompson
  • 1,674
  • 1
  • 20
  • 35
2
votes
2 answers

Relational Database to Triple Store

I am trying to write a java program to transform the information from a MySQL table into triples, so I can later import them into a triple store. Is it possible to do so without creating an auxilliary RDF/XML file? How?
Dragos
  • 2,911
  • 12
  • 39
  • 55
2
votes
1 answer

SVC-CODEPOINT error loading triples to MarkLogic

When trying to load an ntriples file with about 7M triples in it, I get the following error from the REST-API: {"errorResponse":{"statusCode":500, "status":"Internal Server Error", "messageCode":"INTERNAL ERROR", "message":"SVC-CODEPOINT:…
kefo
  • 43
  • 4
2
votes
1 answer

Extracting Postprocessed Triples from AllenNLP Open IE model

I would like to extract clean triples in tuple form of (subject,relation,object) from the Allen NLP Open IE predictor model. Currently, I see that the steps are as follows OIE_output = predictor_OIE.predict(sentence=sent) for verb in…
2
votes
9 answers

JavaScript for-loop question

Is it possible for a for-loop to repeat a number 3 times? For instance, for (i=0;i<=5;i++) creates this: 1,2,3,4,5. I want to create a loop that does this: 1,1,1,2,2,2,3,3,3,4,4,4,5,5,5 Is that possible?
user713052
  • 25
  • 2
  • 7