You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GERBIL QA paper describes the C2KB task to take all resources into account. The running example clarifies, that it only takes entities into account. However, in the code, properties are taken into account as well.
The problem stems from the class hierarchy. C2KB looks for instances of Meaning. However, a question has Annotation instances for entities and Property instances for properties. The latter are a subclass of the Annotation.
Solution
The filtering process for C2KB as sub task of QA has to remove all instances of Property from the list of markings.
The text was updated successfully, but these errors were encountered:
Problem
The GERBIL QA paper describes the C2KB task to take all resources into account. The running example clarifies, that it only takes entities into account. However, in the code, properties are taken into account as well.
The problem stems from the class hierarchy. C2KB looks for instances of
Meaning
. However, a question hasAnnotation
instances for entities andProperty
instances for properties. The latter are a subclass of theAnnotation
.Solution
Property
from the list of markings.The text was updated successfully, but these errors were encountered: