The description a notebook execution workload.
JSON representation |
---|
{ "scaleTier": enum ( |
Fields | |
---|---|
scaleTier |
Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported. |
master |
Specifies the type of virtual machine to use for your training job's master worker. You must specify this field when You can use certain Compute Engine machine types directly in this field. The following types are supported:
Alternatively, you can use the following legacy machine types:
Finally, if you want to use a TPU for training, specify |
accelerator |
Configuration (count and accelerator type) for hardware running notebook execution. |
labels |
Labels for execution. If execution is scheduled, a field included will be 'nbs-scheduled'. Otherwise, it is an immediate execution, and an included field will be 'nbs-immediate'. Use fields to efficiently index between various types of executions. An object containing a list of |
input |
Path to the notebook file to execute. Must be in a Google Cloud Storage bucket. Format: |
container |
Container Image URI to a DLVM Example: 'gcr.io/deeplearning-platform-release/base-cu100' More examples can be found at: https://cloud.google.com/ai-platform/deep-learning-containers/docs/choosing-container |
output |
Path to the notebook folder to write to. Must be in a Google Cloud Storage bucket path. Format: |
params |
Parameters to be overridden in the notebook during execution. Ref https://papermill.readthedocs.io/en/latest/usage-parameterize.html on how to specifying parameters in the input notebook and pass them here in an YAML file. Ex: |
parameters |
Parameters used within the 'inputNotebookFile' notebook. |
service |
The email address of a service account to use when running the execution. You must have the |
job |
The type of Job to be used on this execution. |
kernel |
Name of the kernel spec to use. This must be specified if the kernel spec name on the execution target does not match the name in the input notebook file. |
tensorboard |
The name of a Vertex AI [Tensorboard] resource to which this execution will upload Tensorboard logs. Format: |
Union field job_parameters . Parameters for an execution type. NOTE: There are currently no extra parameters for VertexAI jobs. job_parameters can be only one of the following: |
|
dataproc |
Parameters used in Dataproc JobType executions. |
vertex |
Parameters used in Vertex AI JobType executions. |
ScaleTier
Required. Specifies the machine types, the number of replicas for workers and parameter servers.
Enums | |
---|---|
SCALE_TIER_UNSPECIFIED |
Unspecified Scale Tier. |
BASIC |
A single worker instance. This tier is suitable for learning how to use Cloud ML, and for experimenting with new models using small datasets. |
STANDARD_1 |
Many workers and a few parameter servers. |
PREMIUM_1 |
A large number of workers with many parameter servers. |
BASIC_GPU |
A single worker instance with a K80 GPU. |
BASIC_TPU |
A single worker instance with a Cloud TPU. |
CUSTOM |
The CUSTOM tier is not a set tier, but rather enables you to use your own cluster specification. When you use this tier, set values to configure your processing cluster according to these guidelines:
|
SchedulerAcceleratorConfig
Definition of a hardware accelerator. Note that not all combinations of type
and coreCount
are valid. See GPUs on Compute Engine to find a valid combination. TPUs are not supported.
JSON representation |
---|
{
"type": enum ( |
Fields | |
---|---|
type |
Type of this accelerator. |
core |
Count of cores of this accelerator. |
SchedulerAcceleratorType
Hardware accelerator types for AI Platform Training jobs.
Enums | |
---|---|
SCHEDULER_ACCELERATOR_TYPE_UNSPECIFIED |
Unspecified accelerator type. Default to no GPU. |
NVIDIA_TESLA_K80 |
Nvidia Tesla K80 GPU. |
NVIDIA_TESLA_P100 |
Nvidia Tesla P100 GPU. |
NVIDIA_TESLA_V100 |
Nvidia Tesla V100 GPU. |
NVIDIA_TESLA_P4 |
Nvidia Tesla P4 GPU. |
NVIDIA_TESLA_T4 |
Nvidia Tesla T4 GPU. |
NVIDIA_TESLA_A100 |
Nvidia Tesla A100 GPU. |
TPU_V2 |
TPU v2. |
TPU_V3 |
TPU v3. |
JobType
The backend used for this execution.
Enums | |
---|---|
JOB_TYPE_UNSPECIFIED |
No type specified. |
VERTEX_AI |
Custom Job in aiplatform.googleapis.com . Default value for an execution. |
DATAPROC |
Run execution on a cluster with Dataproc as a job. https://cloud.google.com/dataproc/docs/reference/rest/v1/projects.regions.jobs |
DataprocParameters
Parameters used in Dataproc JobType executions.
JSON representation |
---|
{ "cluster": string } |
Fields | |
---|---|
cluster |
URI for cluster used to run Dataproc execution. Format: |
VertexAIParameters
Parameters used in Vertex AI JobType executions.
JSON representation |
---|
{ "network": string, "env": { string: string, ... } } |
Fields | |
---|---|
network |
The full name of the Compute Engine network to which the Job should be peered. For example, Private services access must already be configured for the network. If left unspecified, the job is not peered with any network. |
env |
Environment variables. At most 100 environment variables can be specified and unique. Example: An object containing a list of |