-
Notifications
You must be signed in to change notification settings - Fork 0
Advanced users
Please note that if you are not already familiar with this system, then you are definitely at the wrong place! If you need a quick user manual, please read the Quick (15-minutes) manual. If you need a detailed user manual please read the detailed manual.
@TODO: What if one wants to call/use an entailment engine from one's own Java program?
@TODO
@TODO
@TODO
An Entailment Decision Algorithm is a Component which takes a Text-Hypothesis pair in input and returns one of a small set of answers. A complete entailment recognition system is trivially an EDA. However, in the interest of re-usability, generic parts of the system should be made into individual Components. Entailment Decision Algorithms communicate with Components through generic specified interfaces.
EditDistanceEDA implements edit distance algorithms. In the training phase it calculates a distance threshold that is applied during the test phase so that pairs resulting in a distance below the threshold are classified as ENTAILMENT, while pairs above the threshold are classified as NONENTAILMENT.
MaxEntClassificationEDA is an EDA based on a prototype system called TIE (Textual Inference Engine). It uses the OpenNLP MaxEnt package to train a GIS Model in order to classify Entailment T-H pairs from Non-Entailment ones. Currently, it works for both English and German. The compatible components are: 1) distance components 2) scoring components 3) lexical knowledge components.
@TODO