Galuoises
Galuoises

Reputation: 3283

Can the list of custom jobs in vertex AI custom seen in the UI?

I have created a custom job with

gcloud ai custom-jobs create --region=us-west1 --display-name=test-job --config=trainjob.yaml

where trainjob.yaml is

workerPoolSpecs:
  machineSpec:
    machineType: n1-standard-4
  replicaCount: 1
  containerSpec:
    imageUri: eu.gcr.io/myproject/myimage

I can see the list of the job via

gcloud ai custom-jobs list --region=us-west1

. Can this list seen in the UI? For AI Platform product there is jobs but I don't see anything like this in Vertex AI

Upvotes: 1

Views: 397

Answers (1)

Luciano Martins
Luciano Martins

Reputation: 551

I don't know if it is exactly what you are looking for, but you can see the custom training jobs details using the UI at Console > Vertex AI > Training > Custom Jobs or following the next link.

Upvotes: 3

Related Questions