> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo-platform/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo-platform/_mcp/server.

# Manage Customization Jobs

<a id="ft-manage-customization-jobs" />

Use customization jobs to fine-tune a [model](/documentation/customizer-reference/models/model-catalog) using a [dataset](/documentation/get-started/core-concepts/manage-files) and [hyperparameters](/documentation/customizer-reference/manage-customization-jobs/training-configuration).

## How It Works

A customization job references a **Model Entity** that contains the base model checkpoint, and is submitted to one of two backends — **automodel** (default, multi-GPU) or **unsloth** (single-GPU, quantized). The job then runs on the platform's GPU cluster. When training completes:

* **LoRA jobs**: Create an **Adapter** attached to the original Model Entity. Adapters can be auto-deployed to NIMs.
* **Full fine-tuning jobs**: Create a **new Model Entity** with the customized weights, linked to the base model.

This design keeps adapters organized with their parent models and simplifies deployment workflows.

Submission is backend-specific (you submit to the automodel or unsloth backend), but every job runs on the shared platform **Jobs** service. As a result, you poll status, list, and cancel jobs through that service the same way regardless of which backend you used.

## Prerequisites

Before you can customize a model using a customization job, make sure that you have [prepared and uploaded a dataset](/documentation/customizer-reference/tutorials/format-training-dataset) to the dataset repository.

***

## Task Guides

Perform common customization job tasks.

The value for `NMP_BASE_URL` will depend on your deployment. After the standard [Setup](/documentation/get-started) flow, the default local URL is `http://localhost:8080`. Otherwise, consult with your cluster administrator.

Create a customization job using SFT or Knowledge Distillation.

Check the status of a customization job.

List all active customization jobs to find a job name for use with Get Status or Cancel.

Cancel a customization job using its name and workspace.

## References

Refer to the following pages for more information on customization jobs.

Review the hyperparameters that you can use to customize a model.

View troubleshooting tips for failed jobs.