|
Project Information
Members
Featured
Downloads
Links
|
version 1.3.0 is released! (Release Notes, Changes) version 1.4.0 is tentatively scheduled for release by mid 2012 (Roadmap) To see how uimaFIT works please see the getting started page, conceptual overview, or the documentation. uimaFIT requires Java 1.5 or higher and UIMA 2.4.0 or higher. Configuring UIMA components is generally achieved by creating XML descriptor files which tell the framework at runtime how components should be instantiated and deployed. These XML descriptor files are very tightly coupled with the Java implementation of the components they describe. We have found that it is very difficult to keep the two consistent with each other especially when code refactoring is very frequent. uimaFIT provides Java annotations for describing UIMA components which can be used to directly describe the UIMA components in the code. This greatly simplifies refactoring a component definition (e.g. changing a configuration parameter name). It also makes it possible to generate XML descriptor files as part of the build cycle rather than being performed manually in parallel with code creation. uimaFIT also makes it easy to instantiate UIMA components without using XML descriptor files at all by providing a number of convenience factory methods which allow programmatic/dynamic instantiation of UIMA components. This makes uimaFIT an ideal library for testing UIMA components because the component can be easily instantiated and invoked without requiring a descriptor file to be created first. uimaFIT is also helpful in research environments in which programmatic/dynamic instantiation of a pipeline can simplify experimentation. For example, when performing 10-fold cross-validation across a number of experimental conditions it can be quite laborious to create a different set of descriptor files for each run or even a script that generates such descriptor files. uimaFIT is type system agnostic and does not depend on (or provide) a specific type system. The latest version of uimaFIT is now available via Maven Central. If you use Maven as your build tool, then you can add uimaFIT as a dependency in your pom.xml file: <dependency> <groupId>org.uimafit</groupId> <artifactId>uimafit</artifactId> <version>1.3.0</version> </dependency> Who is using uimaFIT?uimaFIT is an integral part of ClearTK and DKPro Core. Citing uimaFITIf you use uimaFIT to support academic research, then please cite the following paper as noted in the "REFERENCE" section of the project's README file. If we may list your project as a reference for uimaFIT, please contact us via the uimaFIT users group. |