Using the APIPublishing Weights

Publishing Weights

Share your trained models by making checkpoints publicly accessible.

Publishing a Checkpoint

tinker checkpoint publish $TINKER_CHECKPOINT_PATH

Format: tinker://[UUID]:train:[ID]/weights/[checkpoint_id]

Verifying Publication

tinker checkpoint info tinker://[UUID]/weights/[checkpoint_id]

Check for the Public property to confirm the checkpoint is publicly accessible.

Unpublishing

To make a checkpoint private again (owner-only access):

tinker checkpoint unpublish $TINKER_CHECKPOINT_PATH

Accessing Published Weights

Other users can access your published weights:

ckpt_path = "tinker://[UUID]/weights/[checkpoint_id]"
training_client = service_client.create_training_client_from_state(ckpt_path)