On 02/27/2012 06:05 PM, [email protected] wrote:
I think now we are one step closer to support custom feature generation in
POS Tagger because we can load Artifact Serializers from a factory.
I would like to start work with that, but it is not clear to me how to
reuse code from NameFinder. Can you help me?
I need to improve my POS Tagger model and would like to do something more
flexible than creating a sub-class of the default context generator.
We can use the same feature generation interface as we use
for the name finder and therefore the same factory to create
these feature generators.
The xml used to create them already supports specifying a class
which will then be loaded.
We need to update the POS Taggers context generator to use
this feature generator factory. Most of the POS Taggers feature generation
has already been ported to the feature generation package.
We never updated the POS Tagger itself because that required training
and evaluation to ensure it still works. Anyway that is now easy with
the infrastructure in place.
Jörn