-
Notifications
You must be signed in to change notification settings - Fork 3
Migrating from CSE to Bagpipes
Elmer Garduño edited this page Mar 27, 2014
·
1 revision
- CollectionReader descriptors should use
collection-class:
instead ofclass:
Old:
class: uima.components.collection.FileSystemCollectionReader
New:
collection-class: uima.components.collection.FileSystemCollectionReader
- Phases are now declared using
phase
instead ofinherit: ecd.phase
- Declare the name of the phase using
phase: NAME
- The old "|" syntax to specify options is now deprecated:
Old:
- inherit: ecd.phase
name: PhraseAnnotator
options: |
- inherit: annotators.PhraseAnnotator
- inherit: annotators.QuestionPhraseAnnotator
New:
- phase: PhraseAnnotator
options:
- inherit: annotators.PhraseAnnotator
- inherit: annotators.QuestionPhraseAnnotator