How to delete Pipeline, Trial and Experiment in Sagemaker

0

I already deleted Domain, Users, Models, Endpoints, Endpoint configurations, Notebook instances, S3 Bucket instance and log groups but left with Pipeline, Trial and Experiment. Can anyone please help me with steps to followed to delete Pipeline, Trial and Experiment.

1 Resposta
0

Delete Pipeline (https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_pipeline):

client = boto3.client('sagemaker')

response = client.delete_pipeline(
    PipelineName='string',
    ClientRequestToken='string'
)

Delete Trial (https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_trial_component):

response = client.delete_trial_component(
    TrialComponentName='string'
)

profile pictureAWS
respondido há 2 anos
  • Could you please provide any details related to where do I need to run these scripts?

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas