This article describes how to organize artifacts when a project explores multiple model architectures across many runs, so you can track each architecture’s checkpoints independently. You can version a model in several ways. Artifacts provide a tool for model versioning tailored to specific needs. For projects that explore multiple model architectures, a common approach separates artifacts by architecture. Consider the following steps:Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-style-guide-support-models-articles-20260527-00.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- Create a new artifact for each distinct model architecture. To provide detailed descriptions of the architecture, use the
metadataattribute of artifacts, similar to how you useconfigfor a run. Separating artifacts by architecture keeps each model’s version history isolated. - For each model, log checkpoints periodically with
log_artifact. W&B builds a history of these checkpoints and labels the most recent one with thelatestalias. To refer to the latest checkpoint for any model architecture, use[ARCHITECTURE-NAME]:latest.
latest reference for the most recent checkpoint of each.
Artifacts