amazon-sagemaker-drift-detection icon indicating copy to clipboard operation
amazon-sagemaker-drift-detection copied to clipboard

This sample demonstrates how to setup an Amazon SageMaker MLOps end-to-end pipeline for Drift detection

Results 15 amazon-sagemaker-drift-detection issues
Sort by recently updated
recently updated
newest added

Add support for batch pipeline that creates a SageMaker Pipeline that contains 3 steps 1. Source - pulls source code. 2. Build - get's the latest approved model, and outputs...

Add optional support to allow running build and deployment pipelines in GitHub actions, using [workflow approval](https://timheuer.com/blog/add-approval-workflow-to-github-actions) with the use of multiple environments and *protection rules*.

Replace the `evaluate.py` processing job with a [Lambda Step](https://docs.aws.amazon.com/sagemaker/latest/dg/build-and-manage-steps.html#step-type-lambda) that returns the report dictionary [Model Quality Metrics](https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-model-quality-metrics.html) ``` # Get the training job response = sm_client.describe_training_job(TrainingJobName=job_name) status = response["TrainingJobStatus"] logger.info("Training...

The default AmazonSageMakerExecution is missing permissions to list and delete the stacks created by the SageMaker project. In particular, it is missing the following: ``` "cloudformation:DeleteStack" "cloudformation:DescribeStacks" ``` The default...