Package ai.djl.modality.nlp.translator
Class TokenClassificationServingTranslator
java.lang.Object
ai.djl.modality.nlp.translator.TokenClassificationServingTranslator
- All Implemented Interfaces:
NoBatchifyTranslator<Input,
,Output> PostProcessor<Output>
,PreProcessor<Input>
,Translator<Input,
Output>
public class TokenClassificationServingTranslator
extends Object
implements NoBatchifyTranslator<Input,Output>
-
Constructor Summary
ConstructorsConstructorDescriptionTokenClassificationServingTranslator
(Translator<String, NamedEntity[]> translator) Constructs aTokenClassificationServingTranslator
instance. -
Method Summary
Modifier and TypeMethodDescriptionvoid
prepare
(TranslatorContext ctx) Prepares the translator with the manager and model to use.processInput
(TranslatorContext ctx, Input input) Processes the input and converts it to NDList.processOutput
(TranslatorContext ctx, NDList list) Processes the output NDList to the corresponding output object.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface ai.djl.translate.NoBatchifyTranslator
getBatchifier
Methods inherited from interface ai.djl.translate.Translator
batchProcessInput, batchProcessOutput, getExpansions
-
Constructor Details
-
TokenClassificationServingTranslator
Constructs aTokenClassificationServingTranslator
instance.- Parameters:
translator
- aTranslator
processes token classification input
-
-
Method Details
-
prepare
Prepares the translator with the manager and model to use.- Specified by:
prepare
in interfaceTranslator<Input,
Output> - Parameters:
ctx
- the context for thePredictor
.- Throws:
Exception
- if there is an error for preparing the translator
-
processInput
Processes the input and converts it to NDList.- Specified by:
processInput
in interfacePreProcessor<Input>
- Parameters:
ctx
- the toolkit for creating the input NDArrayinput
- the input object- Returns:
- the
NDList
after pre-processing - Throws:
Exception
- if an error occurs during processing input
-
processOutput
Processes the output NDList to the corresponding output object.- Specified by:
processOutput
in interfacePostProcessor<Output>
- Parameters:
ctx
- the toolkit used for post-processinglist
- the output NDList after inference, usually immutable in engines like PyTorch. @see Issue 1774- Returns:
- the output object of expected type
- Throws:
Exception
- if an error occurs during processing output
-