Class QaServingTranslator

    • Constructor Detail

      • QaServingTranslator

        public QaServingTranslator​(Translator<QAInput,​java.lang.String> translator)
        Constructs a QaServingTranslator instance.
        Parameters:
        translator - a Translator processes question answering input
    • Method Detail

      • prepare

        public void prepare​(TranslatorContext ctx)
                     throws java.lang.Exception
        Prepares the translator with the manager and model to use.
        Specified by:
        prepare in interface Translator<Input,​Output>
        Parameters:
        ctx - the context for the Predictor.
        Throws:
        java.lang.Exception - if there is an error for preparing the translator
      • processInput

        public NDList processInput​(TranslatorContext ctx,
                                   Input input)
                            throws java.lang.Exception
        Processes the input and converts it to NDList.
        Specified by:
        processInput in interface PreProcessor<Input>
        Parameters:
        ctx - the toolkit for creating the input NDArray
        input - the input object
        Returns:
        the NDList after pre-processing
        Throws:
        java.lang.Exception - if an error occurs during processing input
      • processOutput

        public Output processOutput​(TranslatorContext ctx,
                                    NDList list)
                             throws java.lang.Exception
        Processes the output NDList to the corresponding output object.
        Specified by:
        processOutput in interface PostProcessor<Output>
        Parameters:
        ctx - the toolkit used for post-processing
        list - the output NDList after inference
        Returns:
        the output object of expected type
        Throws:
        java.lang.Exception - if an error occurs during processing output