Created
July 16, 2023 16:41
-
-
Save aasthavar/2e21eb5d5cb721713b34689a8c05643c to your computer and use it in GitHub Desktop.
Delete all sagemaker models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import boto3 | |
| from pprint import pprint | |
| client = boto3.client('sagemaker') | |
| def main(): | |
| model_names = [] | |
| for key in paginate(client.list_models): | |
| model_names.append(key['ModelName']) | |
| delete_multiple_models(model_names) | |
| def delete_multiple_models(model_names): | |
| for model_name in model_names: | |
| print('Deleting model: {}'.format(model_name)) | |
| client.delete_model(ModelName=model_name) | |
| def paginate(method, **kwargs): | |
| client = method.__self__ | |
| paginator = client.get_paginator(method.__name__) | |
| for page in paginator.paginate(**kwargs).result_key_iters(): | |
| for result in page: | |
| yield result | |
| if __name__=="__main__": | |
| main() |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add delete-sagemaker-models.py