Question 1mediummultiple choice
Read the full NAT/PAT explanation →PMLE Collaborating to manage data and models • Complete Question Bank
Complete PMLE Collaborating to manage data and models question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Adds absolute value of weights to loss, induces sparsity
Adds squared magnitude of weights to loss, prevents overfitting
Randomly drops units during training to prevent co-adaptation
Stops training when validation performance stops improving
Increases training data diversity through transformations
Refer to the exhibit.
# pipeline.yaml
pipeline:
name: training-pipeline
description: End-to-end ML pipeline
params:
project_id: {type: String}
dataset_id: {type: String}
tasks:
- task1:
component: preprocessing
inputs:
project_id: {inputValue: project_id}
dataset_id: {inputValue: dataset_id}
- task2:
component: training
inputs:
data: {taskOutputs: task1.output}
dependentTasks: [task1]
Error: (gsutil cp pipeline.yaml gs://my-bucket/pipelines/): RuntimeException: Failed to compile pipeline. Invalid pipeline definition: task 'task2' depends on 'task1' but 'task1' is defined after 'task2' in YAML ordering.Refer to the exhibit.
{
"bindings": [
{
"role": "roles/aiplatform.user",
"members": [
"user:alice@example.com",
"serviceAccount:sa-training@my-project.iam.gserviceaccount.com"
]
}
]
}
This IAM policy is attached to a Vertex AI model resource. Alice can view the model but cannot deploy it to an endpoint. The service account can use the model for training.{
"bindings": [
{
"role": "roles/aiplatform.user",
"members": ["user:alice@example.com"]
},
{
"role": "roles/aiplatform.customCodeServiceAgent",
"members": ["serviceAccount:custom-sa@project.iam.gserviceaccount.com"]
}
]
}pipeline:
execution_config:
runner: DataflowRunner
project: my-project
region: us-central1
components:
- component_type: CsvExampleGen
component_name: example_gen
arguments:
input_basedir: gs://my-bucket/data/