End to end tutorial
Getting Started
#Import the SDK Client from the gradient package
from gradient import sdk_client, ProjectsClient#create a API Key
api_key = "API_KEY_HERE"deployment_client = sdk_client.DeploymentsClient(api_key)
models_client = sdk_client.ModelsClient(api_key)
jobs_client = sdk_client.JobsClient(api_key)
projects_client = ProjectsClient(api_key)
experiment_client = sdk_client.ExperimentsClient(api_key)
#or access them all from a single client
#client = sdk_client.SdkClient(api_key)Print list of projects
Create project
Parameters of the experiment
Create an experiment & view its state
Start experiment
Watching the state transitions of an experiment
Create a log stream & print all logs for the duration of experiment
Get model created by experiment
View Model Accuracy
Create a deployment from the model
Last updated