anuzzolese / oke-challenge

19 stars 8 forks source link

Syntax errors and typos in the task-1 training set #13

Closed jplu closed 9 years ago

jplu commented 9 years ago

Hi,

The last version contains several syntax errors and typos:

Wrong encoding of double quotes for beginIndex and endIndex:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-90#char=177,188>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "Charborough House"@en ;
        nif:beginIndex        “177”^^xsd:int ;
        nif:endIndex          “188”^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-90#char=0,313> ;
        itsrdf:taIdentRef     oke:Charborough_House .

This one contains a double quote encoding error for endIndex and a typo (New Yor instead of New York):

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-15#char=2,27>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "native of Auburn, New Yor"@en ;
        nif:beginIndex        "2"^^xsd:int ;
        nif:endIndex          "28”^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-15#char=0,145> ;
        itsrdf:taIdentRef     <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/Native_of_Auburn,_New_York_1> .

This one contains a typo (Universit instead of University):

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=48,67>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          " Columbia Universit"@en ;
        nif:beginIndex        "48"^^xsd:int ;
        nif:endIndex          "67"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=0,69> ;
        itsrdf:taIdentRef     oke:Columbia_University .

Cheers.

anuzzolese commented 9 years ago

Fixed.

Let me know if everything is syntactically correct now.

Andrea

jplu commented 9 years ago

Everything is syntactically correct. Thank you.

jplu commented 9 years ago

I found three other typos:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-49#char=5,13>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "andidate"@en ;
        nif:beginIndex        "5"^^xsd:int ;
        nif:endIndex          "13"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-49#char=0,75> ;
        itsrdf:taIdentRef     oke:Candidate_1 .

Should be:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-49#char=5,13>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "candidate"@en ;
        nif:beginIndex        "5"^^xsd:int ;
        nif:endIndex          "13"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-49#char=0,75> ;
        itsrdf:taIdentRef     oke:Candidate_1 .

And:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=48,67>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          " Columbia Universit"@en ;
        nif:beginIndex        "48"^^xsd:int ;
        nif:endIndex          "67"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=0,69> ;
        itsrdf:taIdentRef     oke:Columbia_University .

Should be:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=48,67>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "Columbia University"@en ;
        nif:beginIndex        "48"^^xsd:int ;
        nif:endIndex          "67"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-94#char=0,69> ;
        itsrdf:taIdentRef     oke:Columbia_University .

And:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-82#char=135,162>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "Kellogg School of Managemen"@en ;
        nif:beginIndex        "135"^^xsd:int ;
        nif:endIndex          "162"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-82#char=0,191> ;
        itsrdf:taIdentRef     oke:Kellogg_School_of_Managemen .

oke:Kellogg_School_of_Managemen
        a           dul:Organization , owl:Individual ;
        rdfs:label  "Kellogg School of Managemen"@en ;
        owl:sameAs  dbpedia:Kellogg_School_of_Management .

Should be:

<http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-82#char=135,162>
        a                     nif:String , nif:RFC5147String ;
        nif:anchorOf          "Kellogg School of Management"@en ;
        nif:beginIndex        "135"^^xsd:int ;
        nif:endIndex          "162"^^xsd:int ;
        nif:referenceContext  <http://www.ontologydesignpatterns.org/data/oke-challenge/task-1/sentence-82#char=0,191> ;
        itsrdf:taIdentRef     oke:Kellogg_School_of_Management .

oke:Kellogg_School_of_Management
        a           dul:Organization , owl:Individual ;
        rdfs:label  "Kellogg School of Management"@en ;
        owl:sameAs  dbpedia:Kellogg_School_of_Management .
anuzzolese commented 9 years ago

Fixed.