Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 418 Bytes

python-sdk.md

File metadata and controls

20 lines (14 loc) · 418 Bytes

Python SDK

The Merlin SDK can be installed directly using pip:

pip install merlin-sdk

Users should then be able to connect to a Merlin deployment as follows

import merlin
from merlin.model import ModelType

# Connect to an existing Merlin deployment
merlin.set_url("merlin.example.com")

# Ensure that you're connected by printing out some Model Endpoints
merlin.list_model_endpoints()