Skip to content

Instantly share code, notes, and snippets.

View jpinas1998's full-sized avatar
🏠
Working from home

Joaquín Pina Socorro jpinas1998

🏠
Working from home
View GitHub Profile
@Nxtra
Nxtra / delete-all-models.py
Created January 17, 2020 07:38
Delete all sagemaker models
import boto3
from pprint import pprint
client = boto3.client('sagemaker')
def main():
model_names = []
for key in paginate(client.list_models):