Skip to main content

Worker Output Name Customization

· One min read

By default, uploaded artifacts use the <job_name>.zip convention (or <job_name>_<worker_number>.zip for multi-worker jobs), as described in the job form data section. You can now override those default artifact names (including per-worker names where applicable) from the job form and from the SDK via output_options.

How It Works

job = await proximl.jobs.create(
...
workers=[{
"command":"python $TRAINML_MODEL_PATH/tensorflow/main.py",
"output_name":"custom-job-output-name"
}
],,
...
)