Try in Colab
- Promote artifact versions that satisfy a machine learning task to other users in your organization.
- Organize artifacts with tags so that you can find or reference specific artifacts.
- Track an artifact’s lineage and audit the history of changes.
- Automate downstream processes such as model CI/CD.
- Limit who in your organization can access artifacts in each registry.

Learn the basics
Each organization initially contains two registries that you can use to organize your model and dataset artifacts called Models and Datasets, respectively. You can create additional registries to organize other artifact types based on your organization’s needs. Each registry consists of one or more collections. Each collection represents a distinct task or use case.
v0
, the second version is v1
, and so on.
Once you log an artifact to W&B, you can then link that specific artifact version to a collection in the registry.
The term “link” refers to pointers that connect where W&B stores the artifact and where the artifact is accessible in the registry. W&B does not duplicate artifacts when you link an artifact to a collection.
- Initialize a W&B Run.
- Log the artifact to W&B.
- Specify the name of the collection and registry to link your artifact version to.
- Link the artifact to the collection.
hello_collection.py
link_artifact(target_path = "")
method does not exist within the registry you specify.
The URL that your terminal prints directs you to the project where W&B stores your artifact.
If an artifact version logs metrics (such as by using
run.log_artifact()
), you can view metrics for that version from its details page, and you can compare metrics across artifact versions from the collection’s page. Refer to View linked artifacts in a registry.Enable W&B Registry
Based on your deployment type, satisfy the following conditions to enable W&B Registry:Deployment type | How to enable |
---|---|
Multi-tenant Cloud | No action required. W&B Registry is available on the W&B App. |
Dedicated Cloud | Contact your account team to enable W&B Registry for your deployment. |
Self-Managed | For Server v0.70.0 or newer, no action required. For older supported Server versions, set the environment variable ENABLE_REGISTRY_UI to true . Refer to Configure environment variables. |
Resources to get started
Depending on your use case, explore the following resources to get started with the W&B Registry:- Check out the tutorial video:
- Take the W&B Model CI/CD course and learn how to:
- Use W&B Registry to manage and version your artifacts, track lineage, and promote models through different lifecycle stages.
- Automate your model management workflows using webhooks.
- Integrate the registry with external ML systems and tools for model evaluation, monitoring, and deployment.
Migrate from the legacy Model Registry to W&B Registry
The legacy Model Registry is scheduled for deprecation with the exact date not yet decided. Before deprecating the legacy Model Registry, W&B will migrate the contents of the legacy Model Registry to the W&B Registry. See Migrating from legacy Model Registry for more information about the migration process from the legacy Model Registry to W&B Registry. Until the migration occurs, W&B supports both the legacy Model Registry and the new Registry.To view the legacy Model Registry, navigate to the Model Registry in the W&B App. A banner appears at the top of the page that enables you to use the legacy Model Registry App UI.
