Path: blob/master/cpd4.8/notebooks/python_sdk/instance-management/Machine Learning artifacts management.ipynb
6405 views
Machine Learning artifacts management
This notebook contains steps and code to demonstrate how to manage and clean up Watson Machine Learning instance. This notebook contains steps and code to work with ibm-watson-machine-learning library available in PyPI repository. This notebook introduces commands for listing artifacts, getting artifacts details and deleting them.
Some familiarity with Python is helpful. This notebook uses Python 3.10.
Learning goals
The learning goals of this notebook are:
List Watson Machine Learning artifacts.
Get artifacts details.
Delete artifacts.
Contents
This notebook contains the following parts:
Connection to WML
Authenticate the Watson Machine Learning service on IBM Cloud Pack for Data. You need to provide platform url
, your username
and api_key
.
Alternatively you can use username
and password
to authenticate WML services.
Install and import the ibm-watson-machine-learning
package
Note: ibm-watson-machine-learning
documentation can be found here.
Working with spaces
First of all, you need to create a space that will be used for your work. If you do not have space already created, you can use {PLATFORM_URL}/ml-runtime/spaces?context=icp4data
to create one.
Click New Deployment Space
Create an empty space
Go to space
Settings
tabCopy
space_id
and paste it below
Tip: You can also use SDK to prepare the space for your work. More information can be found here.
Action: Assign space ID below
You can use list
method to print all existing spaces.
To be able to interact with all resources available in Watson Machine Learning, you need to set space which you will be using.
List existing pipelines. If you want to list only part of pipelines use client.pipelines.list(limit=n_pipelines)
.
Get pipelines details. If you want to get only part of pipelines details use client.pipelines.get_details(limit=n_pipelines)
.
You can get each pipeline details by calling client.pipelines.get_details()
and providing pipeline id from listed pipelines.
Delete all pipelines. You can delete one pipeline by calling client.pipelines.delete()
and providing pipeline id from listed pipelines.
List existing model definitions. If you want to list only part of model definitions use client.model_definitions.list(limit=n_model_definitions)
.
Get model definiton details by copying model definition uid from above cell and running client.model_definitions.get_details(model_definition_guid)
.
Delete model definitions by calling client.model_definitions.delete(model_definition_guid)
.
List existing models. If you want to list only part of models use client.repository.list_models(limit=n_models)
.
Get model details by copying model uid from above cell and running client.repository.get_details(model_guid)
.
To download selected model from repository use:
Instead of downloading model can be also loaded directly to runtime using:
Delete model from repository by calling client.repository.delete(model_guid)
.
List existing functions. If you want to list only part of functions use client.repository.list_functions(limit=n_functions)
.
Get function details by copying function uid from above cell and running client.repository.get_details(function_guid)
.
Delete function from repository by calling client.repository.delete(function_guid)
.
List existing experiments. If you want to list only part of experiments use client.pipelines.list(limit=n_experiments)
.
Get experiments details. If you want to get only part of experiments details use client.experiments.get_details(limit=n_experiments)
.
You can get each experiment details by calling client.experiments.get_details()
and providing experiment id from listed experiments.
Delete all experiments. You can delete one experiment by calling client.experiments.delete()
and providing experiment id from listed experiments.
List existing trainings. If you want to list only part of trainings use client.training.list(limit=n_trainings)
.
Get trainings details. If you want to get only part of trainings details use client.training.get_details(limit=n_trainings)
.
You can get each training details by calling client.training.get_details()
and providing training id from listed trainings.
Delete all trainings. You can delete one training by calling client.training.cancel()
and providing training id from listed trainings.
Note The client.training.cancel()
method has hard_delete
parameter. Please change it to:
True - to delete the completed or canceled training runs.
False - to cancel the currently running training run.
Default value is False
.
List existing deployments. If you want to list only part of deployments use client.deployments.list(limit=n_deployments)
.
Get deployments details. If you want to get only part of deployments details use client.deployments.get_details(limit=n_deployments)
.
You can get each deployment details by calling client.deployments.get_details()
and providing deployment id from listed deployments.
Delete all deployments. You can delete one deployment by calling client.deployments.delete()
and providing deployment id from listed deployments.
You successfully completed this notebook! You learned how to use ibm-watson-machine-learning client for Watson Machine Learning instance management and clean up.
Check out our Online Documentation for more samples, tutorials, documentation, how-tos, and blog posts.
Authors
Szymon Kucharczyk, Software Engineer at IBM.
Copyright © 2020-2025 IBM. This notebook and its source code are released under the terms of the MIT License.