Skip to content

Latest commit

 

History

History
174 lines (114 loc) · 13.4 KB

File metadata and controls

174 lines (114 loc) · 13.4 KB

Looking for an LLMOps template to fine-tune, evaluate, register and deploy LLMs with your own code using HuggingFace, SageMaker Pipelines and AWS CDK in Python? --> finetune_deploy_llm_product

If you are landing here coming from aws-samples/sagemaker-custom-project-templates and looking for the old version of the mlops-multi-account-cdk code, switch to the legacy branch of this repository. The main branch contains version 2 of mlops-multi-account-cdk released in June 2024 which will be the maintained branch. We recommend using the main branch for all new developments

MLOps Framework and Templates with AWS CDK in Python (Multi Account)

As enterprise businesses embrace Machine Learning (ML) across their organisations, manual workflows for building, training, and deploying ML models tend to become bottlenecks to innovation. To overcome this, enterprises needs to shape a clear operating model defining how multiple personas, such as Data Scientists, Data Engineers, ML Engineers, IT, and Business stakeholders, should collaborate and interact, how to separate the concerns, responsibilities and skills, and how to leverage AWS services optimally. This combination of ML and Operations, so-called MLOps, is helping companies streamline their end-to-end ML lifecycle and boost productivity of data scientists while maintaining high model accuracy and enhancing security and compliance.

In this repository, we have created a baseline infrastructure for a secure MLOps environment based on the AWS CDK in Python. Our solution consists of two parts:

  • mlops-infra: The necessary secure infrastructure for the multiple accounts of MLOps including VPCs and VPC endpoints, SSM, IAM user roles, etc.
  • mlops-sm-project-template: A Service Catalog portfolio that contains custom Amazon SageMaker Project templates that enable multi account model promotion.

MLOps templates available

Currently, five example MLOps templates are available. All templates offer Model Building, Fine-tuning or Training, Evaluation, and Deployment across environments (dev, staging, prod)

  1. MLOps Template for LLM Fine-tuning, and real-time inference: MLOps pattern that shows how to create a SageMaker pipeline to fine-tune an LLM (CodeLlama) using HuggingFace and deploy the trained model as a SageMaker endpoint across environments.

  2. MLOps Template for Image Generation Model Fine-tuning, and real-time inference: MLOps pattern that shows how to create a SageMaker pipeline to fine-tune Stable Diffusion with Dreambooth using HuggingFace, and evaluate it (using FID + DINO), and deploy the trained model as a SageMaker endpoint across environments.

  3. MLOps Template for ML Model Training and real-time inference: MLOps pattern to train models (Tabular - XGBoost) using SageMaker pipelines and deploy the trained model as a SageMaker endpoint across environments.

  4. MLOps Template for ML Model Training and batch inference: MLOps pattern that shows how to train models (Tabular - XGBoost) using SageMaker pipelines and deploy SageMaker pipelines for batch inference across environments.

  5. MLOps Template for ML Model Training and real-time inference with your own container (BYOC): Similar to Template 3. but enabling to bring your own container with a custom ECR repository.

  6. MLOps Template for ML Model Training and IoT deployment: Similar to Template 3. but deploying an edge-optimized version to the model as GreenGrass components.

How to use:

First deploy mlops-infra:

mlops-infra will deploy a Secure data science exploration environment for your data scientists to explore and train their models inside a SageMaker studio environment. It also prepares your dev/preprod/prod accounts with the networking setup to: either run SageMaker studio in a VPC, or be able to create SageMaker Endpoints and other infrastructure inside VPCs. The architecture is represented below. The repository will also create example SageMaker users (Lead Data Scientist and Data Scientist) and associated roles and policies.

Please note that the networking created by mlops_infra is a kick start example and that the repository is also designed to be able to import existing VPCs created by your organization instead of creating its own VPCs.

sagemaker studio and networking stack

Once you have deployed mlops-infra, deploy mlops-sm-project-template:

mlops-sm-project-template will create a Service Catalog portfolio that contains SageMaker project templates as Service Catalog products. To do so, the service_catalog stack iterates over the templates folder which contains your different organization SageMaker project templates in the form of CDK stacks. These example SageMaker project templates can be customized for the need of your organization. The general architecture of each of those templates is represented in the diagram below.

SageMaker Projects general architecture diagram

Note: Both folders are CDK applications which also come with their respective CICD pipelines hosted in a central governance account, to deploy and maintain the infrastructure they define to target accounts. This is why you will see that both also contain a pipeline_stack and a codecommit_stack. However if you are not interested in the concept of a centralized governance account and CICD mechanism, or if you already have an internal mechanism in place for those (AWS Control Tower, ADF, etc...), you can simply use the CoreStage of each of those CDK applications. See the READMEs of each subfolder for more details.

Quick setup - first deployment:

The very first time you deploy the repository, you will be deploying both mlops-infra and mlops-sm-project-template cdk applications from your local machine to your AWS governance account. The minimum pre-requisite is 4 AWS accounts: one governance account (where the central code repositories and CICD pipelines will be hosted), and one business unit composed of three accounts dev/preprod/prod. To get started we recommend leveraging the helper scripts in scripts which will help you installing prerequisites on your machine, create the appropriate config files, and bootstrap your AWS accounts. If you would rather do those actions manually skip the section below and refer to the instructions in mlops-infra and mlops-sm-project-template.

First step: Setup AWS Profiles

As the MLOps foundation is based on multiple accounts, it is necessary to create a simple way to interact with multiple AWS credentials. We recommend the creation of an AWS profile per account with enough permission to deploy to CloudFormation following the instructions here . For example, the .aws/credentials should look like:

[mlops-governance]
aws_access_key_id = YOUR_ACCESS_KEY_ID
aws_secret_access_key = YOUR_SECRET_ACCESS_KEY
aws_session_token = YOUR_SESSION_TOKEN  # this token is generated if you are using an IAM Role to assume into the account

[mlops-dev1]
aws_access_key_id = YOUR_ACCESS_KEY_ID
aws_secret_access_key = YOUR_SECRET_ACCESS_KEY
aws_session_token = YOUR_SESSION_TOKEN  # this token is generated if you are using an IAM Role to assume into the account

[mlops-preprod1]
...

[mlops-prod1]
...

Second step: install prerequisites

mlops-multi-account-cdk/scripts/quick-start.sh prerequisites

Third step: create config files

mlops-multi-account-cdk/scripts/quick-start.sh config

This will create for you the required governance account and business unit config files in both mlops-infra and mlops-sm-project-template It will also generate a temporary config file bootstrap_conf.tmp that will be used to bootstrap the different accounts. Please note, the prompt will ask you for an AWS profile for each account. This should correspond to what you defined in the first step "Setup AWS Profiles".

The script will request the at least 4 accounts, i.e. governance, and one business-unit composed of dev, preprod and prod, and the corresponding AWS profiles as inputs. If you want to only deploy to 1 account you can use the same id for all account variables or pass the same values in the script.

Fourth step: boostrap the accounts

mlops-multi-account-cdk/scripts/quick-start.sh bootstrap

Fifth step: cdk deploy

cd mlops-multi-account-cdk/mlops-infra/
pip install -r requirements.txt
cdk deploy --all --profile mlops-governance
cd mlops-multi-account-cdk/mlops-sm-project-template/
pip install -r requirements.txt
cdk deploy --all --profile mlops-governance

Sixth step: customization and maintenance

If you've succesfully deployed both mlops-infra and mlops-sm-project-template, you should see two CodeCommit repositories created in your governance account. To customize their content clone these repositories (from now on you can ignore the aws-entreprise-mlops-framework repository). Any push to the main branch of these repositories will trigger the associated CICD pipelines in your AWS governance account and propagate the changes to your business units.

Inside your AWS governance account you should see something like this:

code-commit-repositories-in-gov

code-pipelines-in-gov

If the CICD Pipelines (AWS CodePipelines) inside your AWS governance ran succesfully, inside your dev account(s), you should see something like this:

Inside SageMaker Studio:

organization-sm-project-templates

Or in Service Catalog:

organization-service-catalog

For how to customize, follow the instructions from mlops-infra/DEVELOPER_GUIDE and mlops-sm-project-template/DEVELOPER_GUIDE.

Contacts

If you have any comments or questions, please contact:

The maintaining Team:

Special thanks

  • Fatema Alkhanaizi, who is no longer at AWS, was the major initial contributor of the project.
  • Fotinos Kyriakides, no longer at AWS, was the lead co-owner and developer of this repository and helped to scale it in the last 2 years.
  • Georgios Schinas, no longer at AWS, played a crucial role in advocating and guiding the design of this repository in its initial phase.
  • Karsten Karres, no longer at AWS, developed the initial version of the Stable Diffusion (GenAI image generation) fine-tuning template.
  • Seunghee Jeong, no longer at AWS, developed the initial version of the LLM fine-tuning template.

Other AWS MLOps accelerators