Manage Model Entities for Customization

View as Markdown

Before running a customization job, you need to set up a Model Entity that points to your base model checkpoint. This section covers creating the required FileSet and Model Entity.

Task Guides


Key Concepts

What is a FileSet?

A FileSet is a collection of files managed by the platform. For customization, you create a FileSet containing:

  • Model weights (.safetensors, .bin, or .nemo files)
  • Model configuration (config.json)
  • Tokenizer files (tokenizer.json, tokenizer_config.json, and so on)

FileSets can be populated from:

  • Hugging Face Hub - Download directly from HF repositories
  • NGC - Download from NVIDIA NGC catalogs
  • Local upload - Upload files from your local machine

What is a Model Entity?

A Model Entity is the platform’s representation of a model. It contains:

  • FileSet reference - Points to where the model files are stored
  • Model Spec - Auto-populated metadata about the model architecture
  • Adapters - LoRA or other adapters attached to this model (populated after training)
  • Base model link - For fine-tuned models, links back to the parent

Quick Start Example

Complete example of setting up a model for customization:

Hugging Face Token: If downloading from a gated Hugging Face repository (like Llama models), you will need to create a secret containing your Hugging Face API token first. Refer to Manage Secrets for instructions.

import os
import time
from nemo_platform import NeMoPlatform
from nemo_platform._exceptions import ConflictError
from nemo_platform.types.files import HuggingfaceStorageConfigParam
client = NeMoPlatform(
base_url=os.environ.get("NMP_BASE_URL", "http://localhost:8080"),
workspace="default",
)
# Step 1: Create FileSet from Hugging Face
try:
fileset = client.files.filesets.create(
workspace="default",
name="qwen3-1.7b",
description="Qwen3 1.7B base model from Hugging Face",
storage=HuggingfaceStorageConfigParam(
type="huggingface",
repo_id="Qwen/Qwen3-1.7B",
repo_type="model",
),
)
print(f"Created FileSet: {fileset.name}")
except ConflictError:
print("FileSet already exists, retrieving...")
fileset = client.files.filesets.retrieve(workspace="default", name="qwen3-1.7b")
# Step 2: Create Model Entity
try:
model = client.models.create(
workspace="default",
name="qwen3-1.7b",
fileset="default/qwen3-1.7b", # Reference to the FileSet
description="Qwen3 1.7B base model for customization",
)
print(f"Created Model Entity: {model.name}")
except ConflictError:
print("Model Entity already exists, retrieving...")
model = client.models.retrieve(workspace="default", name="qwen3-1.7b")
# Step 3: Wait for ModelSpec to be auto-populated
print("Waiting for model spec to be populated...")
while not model.spec:
time.sleep(5)
model = client.models.retrieve(workspace="default", name="qwen3-1.7b")
print(f"Model ready!")
print(f" Architecture: {model.spec.family}")
print(f" Parameters: {model.spec.base_num_parameters:,}")
print(f" Layers: {model.spec.num_layers}")

After the Model Entity is ready (has a spec), you can use it in customization jobs with model: "default/qwen3-1.7b".