Downloading Weights
You can download trained model weights for use outside of MinT.
Using the SDK
import mint
import urllib.request
sc = mint.ServiceClient()
rc = sc.create_rest_client()
future = rc.get_checkpoint_archive_url_from_tinker_path("tinker://<unique_id>/sampler_weights/final")
checkpoint_archive_url_response = future.result()
# checkpoint_archive_url_response.url is a signed URL valid until checkpoint_archive_url_response.expires
urllib.request.urlretrieve(checkpoint_archive_url_response.url, "archive.tar")The downloaded archive contains the model weights in a format compatible with standard ML frameworks.