After the model being trained successfully, the function build will
be called with the model directory and options.
the options for the plugin
initialize is called before the pipeline starting,
plugin can do initialization here, something like environment checking,
login to the server, etc. The options are defined in the pipeline metadata, like:
{
artifacts:[{
processor: 'server-uploader',
options: {
targetUrl: 'http://os.alibaba.com/pipcook/model/'
}
}]
}
the options for the plugin
Generated using TypeDoc
The type for artifact plugin export. As a pipcook artifact plugin, we need to export two function named
initializeandbuild.