diff --git a/README.rst b/README.rst index 7482dd5667..0040ad7bab 100644 --- a/README.rst +++ b/README.rst @@ -409,4 +409,50 @@ SageMaker V2 Examples #. `SageMaker Autopilot `__ #. `Model Monitoring `__ #. `SageMaker Debugger `__ -#. `SageMaker Processing `__ \ No newline at end of file +#. `SageMaker Processing `__ + +🚀 Model Fine-Tuning Support Now Available in V3 +------------------------------------------------- + +We're excited to announce model fine-tuning capabilities in SageMaker Python SDK V3! + +**What's New** + +Four new trainer classes for fine-tuning foundation models: + +* SFTTrainer - Supervised fine-tuning +* DPOTrainer - Direct preference optimization +* RLAIFTrainer - RL from AI feedback +* RLVRTrainer - RL from verifiable rewards + +**Quick Example** + +.. code:: python + + from sagemaker.train import SFTTrainer + from sagemaker.train.common import TrainingType + + trainer = SFTTrainer( + model="meta-llama/Llama-2-7b-hf", + training_type=TrainingType.LORA, + model_package_group_name="my-models", + training_dataset="s3://bucket/train.jsonl" + ) + + training_job = trainer.train() + +**Key Features** + +* ✨ LoRA & full fine-tuning +* 📊 MLflow integration with real-time metrics +* 🚀 Deploy to SageMaker or Bedrock +* 📈 Built-in evaluation (11 benchmarks) +* ☁️ Serverless training + +**Get Started** + +.. code:: python + + pip install sagemaker>=3.1.0 + +`📓 Example notebooks `__ \ No newline at end of file