Add OpenVLA AgentCore Orchestrator: autonomous Slurm training orchestration#1576
Open
mijanur132 wants to merge 1 commit into
Open
Add OpenVLA AgentCore Orchestrator: autonomous Slurm training orchestration#1576mijanur132 wants to merge 1 commit into
mijanur132 wants to merge 1 commit into
Conversation
7b5a3a7 to
4801535
Compare
|
Latest scan for commit: Security Scan ResultsScan Metadata
SummaryScanner ResultsThe table below shows findings by scanner, with status based on severity thresholds and dependencies: Column Explanations: Severity Levels (S/C/H/M/L/I):
Other Columns:
Scanner Results:
Severity Thresholds (Thresh Column):
Threshold Source: Values in parentheses indicate where the threshold is configured:
Statistics calculation:
|
21413fc to
73158b5
Compare
…ration Demonstrates AgentCore managing GPU training jobs on HyperPod Slurm: - MCP server exposing 6 Slurm tools (submit, status, logs, cancel, info, metrics) - Autonomous agent with anomaly detection (divergence, stall, NaN) and recovery - OpenVLA-7B LoRA fine-tuning on LIBERO as concrete workload - Container-based (Pyxis/Enroot) with pinned deps for reproducibility - All config via environment variables, no hardcoded paths/credentials Tested: 500 steps, ~10 min on 1x P5en node (8x H200), 15 GB checkpoint output.
73158b5 to
977f929
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new use case under
02-use-cases/ml-training-agent/demonstrating how Amazon Bedrock AgentCore can autonomously manage GPU training jobs on a SageMaker HyperPod Slurm cluster.What's included
slurm_mcp_server.pyvla_training_agent.pyopenvla.Dockerfileslurm/finetune_openvla.sbatchsrun --container-image+torchrun.env.examplerequirements.txtArchitecture
Same pattern as the SRE-agent sibling:
Concrete workload
OpenVLA-7B LoRA fine-tuning on LIBERO robotics benchmark. Tested on HyperPod P5en (8x H200): ~10 min for 500 steps, 15 GB checkpoint output.
Relation to awsome-distributed-ai PR
The standalone training recipe (Dockerfile + sbatch, no agent) is submitted separately as awslabs/awsome-distributed-ai#1112. This PR bundles the full agent + training workload as a self-contained AgentCore demo.