Interface PostProcessingScript


public interface PostProcessingScript

A script that runs after a model's pipeline completes. Produced by a PostProcessingScriptRunner.

  • Method Details

    • getRunner

      The runner that created this script.
    • getScriptLocation

      URI getScriptLocation()
      Filesystem or remote location of the script.
    • validate

      Problems validate()

      Validates the script can be run.

    • runAfter

      void runAfter(PipelineJobContext context)

      Invokes the script with the given job context, which is used to derive metadata about the completed model run. Any errors should be reported to PipelineJobContext.getProblemSink() rather than thrown.