A Protégé Desktop plugin that enables users to specify defeasible subclass axioms and compute "typical" superclasses and instances for a given class expression. The plugin is split into two parts: 1) the tab plugin net.za.cair.dip.jar
and 2) an optional extension of Protégé's editor plugin protege-owl-editor.jar
that enables users to toggle subclass axioms to be defeasible.
Requirements:
- Protégé Desktop
- Java 1.8
Steps:
-
If Protégé is open, close it.
-
Copy
net.za.cair.dip-${version}.jar
, in the releases section of this repository, to theplugins/
subdirectory of your Protégé Desktop installation. -
Optional: if you would like to add a button to subclass axioms in Protégé allowing you to automatically toggle axioms to be defeasible, replace
protege-editor-owl.jar
in thebundles/
directory of your Protégé Desktop installation with the version in the releases section of this repository. Backup the originalprotege-editor-owl.jar
so you can revert back to it if you encounter any issues with the new file. -
Fire up Protégé and consult the wiki section of this repository to learn how to use the DIP plugin.
Note: DIP uses the currently selected traditional OWL reasoner (from the Reasoner menu in Protégé) in its defeasible reasoning algorithms. Theoretically, you can select any reasoner suitable for the Description Logic (DL) used to formulate your ontology. However, in practice, OWL reasoners can differ in how they implement the OWLReasoner interface in the OWLAPI. For example, some reasoners will not update their inferences after an ontology changes unless the "classify" method is invoked explicitly. HermiT does not have this issue, and is the recommended choice to use in conjunction with DIP.
Frequently Asked Questions (FAQs)
Requirements:
Steps:
-
Get a copy of the code:
git clone https://github.com/kodymoodley/defeasibleinferenceplatform.git
-
Change into the
defeasibleinferenceplatform/
directory. -
Type
mvn clean package
. On build completion, thetarget/
directory will contain anet.za.cair.dip-${version}.jar
file.