UIMA开发简述

There are several steps to develop and test a simple UIMA annotator.
1. Define the CAS types that the annotator will use.
2. Generate the Java classes for these types.
3. Write the actual annotator Java code.
4. Create the Analysis Engine descriptor.
5. Test the annotator.

 

A CPE includes an Analysis Engine and adds a Collection Reader, a CAS Initializer (deprecated as of version 2), and CAS Consumers.The part of the UIMA Framework that supports the execution of CPEs is called the Collection Processing Manager, or CPM.

你可能感兴趣的:(java)