Package ai.djl.modality.nlp.translator
Class TextClassificationServingTranslator
java.lang.Object
ai.djl.modality.nlp.translator.TextClassificationServingTranslator
- All Implemented Interfaces:
NoBatchifyTranslator<Input,,Output> PostProcessor<Output>,PreProcessor<Input>,Translator<Input,Output>
public class TextClassificationServingTranslator
extends Object
implements NoBatchifyTranslator<Input,Output>
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aTextClassificationServingTranslatorinstance. -
Method Summary
Modifier and TypeMethodDescriptionvoidprepare(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, waitMethods inherited from interface ai.djl.translate.NoBatchifyTranslator
getBatchifierMethods inherited from interface ai.djl.translate.Translator
batchProcessInput, batchProcessOutput, getExpansions
-
Constructor Details
-
TextClassificationServingTranslator
Constructs aTextClassificationServingTranslatorinstance.- Parameters:
translator- aTranslatorprocesses text classification input
-
-
Method Details
-
prepare
Prepares the translator with the manager and model to use.- Specified by:
preparein 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:
processInputin interfacePreProcessor<Input>- Parameters:
ctx- the toolkit for creating the input NDArrayinput- the input object- Returns:
- the
NDListafter pre-processing - Throws:
Exception- if an error occurs during processing input
-
processOutput
Processes the output NDList to the corresponding output object.- Specified by:
processOutputin 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
-