R/training_pipeline_jobs.R
gcva_run_job.Rd
Executes an training job https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.trainingPipelines/create
gcva_run_job(
projectId = gcva_project_get(),
locationId = gcva_region_get(),
baseOutputDir = gcva_bucket_get(),
job,
dataset,
targetColumn = NULL,
trainingFractionSplit = 0.8,
validationFractionSplit = 0.1,
testFractionSplit = 0.1,
modelDisplayName,
disableEarlyStopping = FALSE,
machineType = NULL,
sync = TRUE
)
GCP project id
location of GCP resources
a job object of: "gcva_automlTabularTrainingJob" OR TBD
a vertex ai dataset object with class "gcva_dataset"
STRING full column name of the model target
decimal, percentage of dataset to use for training model during training
decimal, percentage of dataset to use for validating model during training
decimal, percentage of dataset to use for testing model during training
display name of the model
disable early stopping default FALSE
If set to TRUE, the call will block while waiting for the asynchronous batch job to complete.
trainingPipeline object