Skip to content

Models

Browse, compare, and manage shared model artifacts in the Dreadnode platform registry.

Models are versioned artifacts published into an organization registry so teams can share trained weights, compare releases, attach metrics, and download exact versions later.

In the App IA, this page lives under Hub.

This page is about stored model artifacts in the registry. It is not the same thing as the interactive runtime model picker described in TUI Models and Selection, the per-user Chat Models settings surface, or the catalog of hosted dn/ system models returned by the inference APIs.

The platform model page is the place to:

  • browse model artifacts from your organization and the public catalog
  • search, sort, and filter by tags, license, task category, framework, and size
  • inspect version metadata such as architecture, framework, aliases, and metrics
  • compare multiple versions side by side before promoting one
  • download, publish, unpublish, or delete versions you own

Each model card groups many versions under one name so you can compare releases without bouncing between separate pages.

Model artifacts are the durable output side of training and fine-tuning workflows.

  1. inspect and publish a local model package
  2. compare versions and metrics in the Hub
  3. optionally assign aliases for human workflows
  4. pin one exact version in downstream automation
  5. download that version later when you need the stored artifact locally

That makes the Hub model page a release-management surface, not an inference model selector.

ConceptWhat it means
org-scopedvisible only inside the owning organization
publicvisible across organizations in the shared catalog
canonical nameshown as <owner>/<name> when ownership matters
pinned referenceuse org/name@version when automation must resolve one exact artifact
aliaseshuman-friendly labels that point at a specific version
metricsversion-level evaluation numbers you can compare across releases

Aliases are useful for human workflows, but agents should still resolve down to an explicit version before running reproducible automation.

  • A registry model artifact is a stored package, not the same as picking a hosted or BYOK inference model for a chat runtime.
  • Prefer pinned refs such as org/name@version over aliases when the result must be reproducible.
  • Use comparison and metrics to choose between versions before attaching one to downstream jobs or release notes.
  • Use the owning org for visibility changes and deletion.
Terminal window
dreadnode model inspect ./models/assistant-lora
dreadnode model compare assistant-lora 0.9.0 1.0.0
dreadnode model alias [email protected] champion
dreadnode model download acme/[email protected] --output ./assistant-lora.tar

Use Packages and Registry for artifact operations, TUI Models and Selection and Chat Models when you mean live inference choice instead of stored artifacts, and the SDK API Client when you need model-registry inspection or hosted system-model lookup from Python.