I want to use the YAGO 3 rdf triples (yago3_entire_ttl.7z from http://www.mpi-inf.mpg.de/departments/databases-and-information-systems/research/yago-naga/yago/downloads/ ) into the apache-jena triplestore (3.1.0) using tdbloader.
The riot tool provided by apache-jena to validate the input gives 2 types of errors (multiple occurences) :
- Illegal unicode escape sequence value: \\ (0x5C)
- Illegal character in IRI (codepoint 0x7C, '|')
My obvious thought is to replace '\\' and '|' with accepted character sequences that pass the riot validation, but I wanted to know whether there are other solution?