| name | vertex-tuning |
| description | Vertex AI Model Tuning. Use when you need to fine-tune models using Vertex AI's infrastructure.
|
Vertex AI Model Tuning
Overview
This skill provides procedural knowledge for fine-tuning Large Language Models
(LLMs) using Vertex AI's tuning service. It covers the entire lifecycle from
environment setup and data preparation to job configuration, monitoring, and
deployment.
Workflow Decision Tree
-
Environment Check: Has the environment (Auth, APIs, IAM, Venv) been
initialized?
-
Dataset Status: Is the dataset ready in JSONL format and uploaded to
GCS?
-
Configuration: Have the target model and hyperparameters been decided?
-
Job Status: Has the tuning job been submitted?
-
Job Completion: Is the tuning job complete?
-
Deployment: Has the tuned model been deployed to an endpoint?
Phase 0: Environment & IAM Setup {#phase-0}
Ensure the foundational environment is ready before proceeding.
0.1 Authentication & Project Context
- Check if
gcloud CLI is installed. If it is not installed, prompt the user
for permission to install it before proceeding.
- Verify
gcloud auth list. If not authenticated, run gcloud auth login.
- Ensure
project and location are known. Use gcloud config get project
to retrieve the current project (and gcloud config get compute/region for
region).
- CRITICAL: Ask for Confirmation. You must prompt the user to confirm the
retrieved project and region before proceeding, in case they want to switch
to a different one.
0.2 Enable APIs
Ensure aiplatform.googleapis.com and storage.googleapis.com are enabled.
bash gcloud services enable aiplatform.googleapis.com storage.googleapis.com --project=YOUR_PROJECT
0.3 IAM Permissions
Verify the following identities have the required roles.
- Vertex AI Service Agent:
service-PROJECT_NUMBER@gcp-sa-aiplatform.iam.gserviceaccount.com
- Managed OSS Fine Tuning Service Agent:
service-PROJECT_NUMBER@gcp-sa-vertex-moss-ft.iam.gserviceaccount.com
- User Identity: The account running the commands.
0.4 Virtual Environment
Create and use a virtual environment named tuning_agent_venv in the home
directory. Install dependencies from references/requirements.txt. bash python3 -m venv ~/tuning_agent_venv source ~/tuning_agent_venv/bin/activate pip install -r references/requirements.txt
Phase 1: Dataset Preparation & Upload {#phase-1}
Vertex AI requires valid JSONL format in GCS.
1.0 Dataset Discovery & Confirmation
- Ask the User First: Ask the user if they already have a dataset they
want to use.
- Auto-Discovery: If the user does not have a dataset, search the
authenticated project's GCS buckets to find if any existing file has a
reasonable dataset that can do the job the user prompted initially.
- CRITICAL: Ask for Confirmation. Do not proceed with dataset preparation
or upload until you present the found or provided dataset to the user and
they confirm the dataset to use.
1.1 Formatting & Validation
- Conversion: If data is in CSV or JSON, use
vertex-tuning/scripts/prepare_dataset.py
to convert.
- Validation Split Confirmation: If the user only provides a training
dataset, you must prompt the user to seek permission to split the
training dataset 80/20 to form a validation dataset (using
--validation_split 0.2). If they agree, proceed with the split. If they
decline, just use the training dataset without a validation dataset.
- Validation: If data is already in JSONL, validate it before uploading:
bash python3 vertex-tuning/scripts/prepare_dataset.py \ --input my_data.jsonl \ --format messages \ --validate_only
- Refer to Data Preparation Guide for required
schemas.
1.2 Upload
Upload formatted .jsonl files to GCS using a unique directory (e.g., with a
datetime timestamp) to avoid overwriting outputs from different runs.
gcloud storage cp dataset.jsonl gs://YOUR_BUCKET/tuning_agent_job_<datetime>/dataset.jsonl
Phase 2: Recommendations & Configuration {#phase-2}
Help the user choose the best model and parameters. Always seek user
confirmation before submitting the job.
2.1 Model Selection
- If the user does not specify a model in their prompt, recommend a model
based on the user's prompt by referencing the
Models Catalog.
- Prompt for Confirmation: Present the recommended model to the user and
ask for their confirmation.
2.2 Hyperparameters
- If the user does not specify hyperparameters, recommend
tuning_mode,
epochs, learning_rate, and adapter_size based on the
Tuning Guide and model-specific baselines in
the Models Catalog.
- Prompt for Confirmation: Present the recommended hyperparameter
configuration to the user and ask for their approval before proceeding to
job submission.
Phase 3: Tuning Job Execution
Submit the job using scripts/tune_model.py.
python3 scripts/tune_model.py \
--project YOUR_PROJECT \
--location YOUR_LOCATION \
--bucket YOUR_STAGING_BUCKET \
--base_model BASE_MODEL_ID \
--train_dataset gs://YOUR_BUCKET/tuning_agent_job_<datetime>/dataset.jsonl \
--output_uri gs://YOUR_BUCKET/tuning_agent_job_<datetime>/output \
--epochs EPOCHS \
--learning_rate LR \
--tuning_mode MODE
Phase 4: Monitoring
Monitor the job via the Cloud Console link provided in the script output or by
polling the job status.
Phase 5: Model Deployment
Once the job is SUCCEEDED, deploy the model using scripts/deploy_model.py.
python3 vertex_tuning/scripts/deploy_model.py \
--project YOUR_PROJECT \
--location YOUR_LOCATION \
--artifacts_uri gs://YOUR_BUCKET/tuning_agent_job_<datetime>/output/postprocess/node-0/checkpoints/final \
--machine_type MACHINE_TYPE \
--accelerator_type ACCELERATOR_TYPE \
--accelerator_count COUNT
Refer to Models Catalog for hardware recommendations.
Resources