-
Notifications
You must be signed in to change notification settings - Fork 0
Advanced users
Please note that if you are not already familiar with the EOP, 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.
NOTE: As soon as you face any issue, which might be a bug, i.e. a software defect, a feature which is not yet supported or any other problem that is caused due to the lack of clarity in the documentation, etc. please do not hesitate to report the issue by creating a new issue in the issue tracking system.
The EOP source code is hosted on Github and managed using the Git revision control system. To download the source code, please use a Git client and clone the repository using the command below:
git clone https://github.com/hltfbk/Excitement-Open-Platform.git
The release branch contains the source code of the latest release (the latest development source code is in the master branch). Then, build the EOP using the Maven command below:
mvn package assembly:assembly
In order to get more information about the various EOP distribution types and their intended audience, please read this page.
@TODO: What if one wants to call/use an entailment engine from one's own Java program?
The EOP Resources package includes the knowledge resources, the configuration files, the models, the datasets, the databases, etc. As an advanced user, you should have some basic knowledge about them.
@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.
BIUTEE is a transformation-based EDA. BIUTEE applies a sequence of knowledge-based transformations, by which the text is transformed into the hypothesis. The system decides whether the text entails the hypothesis by observing the quality of this sequence.
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