Table Of Contents

Previous topic

Utterance Processor

Next topic

SPlugin

Feature Processor

A Feature Processor extracts features from an item.

class speect.SFeatProcessor(*args, **kwargs)

A Feature Processor processes an item by extracting information from it and returning this extracted information.

Note

The SFeatProcessor object inherits from SObject in the Speect Engine and can therefore be used in functions/methods that require parameters of type SObject.

Functions

SFeatProcessor.run()

run(item)

Execute the FeatProcessor on the given item.

Parameters:item (SItem) – The item on which to execute the feature processor.
Returns:The extracted information object (can be any object).