Created
January 17, 2020 07:38
-
-
Save Nxtra/49cde5999de20023e2607433046ca6cf to your computer and use it in GitHub Desktop.
Delete all sagemaker models
This file contains 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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment