Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent OWL translation of string properties #40

Open
Kaljurand opened this issue Oct 7, 2023 · 0 comments
Open

Inconsistent OWL translation of string properties #40

Kaljurand opened this issue Oct 7, 2023 · 0 comments

Comments

@Kaljurand
Copy link
Member

The ACE sentence

"Like" labels a key.

(correctly) fails to be converted into OWL, resulting in the message "label: Subject or object of this verb makes an illegal reference."

However, in the presence of certain (carefully constructed) additional sentences, a partial OWL translation is returned instead of the error.

"Like" labels a key.
If John pushes the key then John says "Hi".
John inserts a card.

  SubClassOf(
      ObjectIntersectionOf(
         ObjectOneOf(
            :John
         )
         ObjectSomeValuesFrom(
            :push
            ObjectOneOf(
               _:633879601337020495
            )
         )
      )
      DataHasValue(
         :say
         "Hi"^^<http://www.w3.org/2001/XMLSchema#string>
      )
   )
   ClassAssertion(
      :key
      _:633879601337020495
   )
   ClassAssertion(
      ObjectSomeValuesFrom(
         :insert
         :card
      )
      :John
   )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant