-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.json
More file actions
54 lines (54 loc) · 1.75 KB
/
metadata.json
File metadata and controls
54 lines (54 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "Dataflow example ml inference.",
"description": "This example pipeline runs a model inference on a dataset using a trained model.",
"parameters": [
{
"name": "dataset_csv_path",
"label": "Dataset CSV path",
"helpText": "The path to the dataset CSV file. Must be a GCS path.",
"isOptional": false
},
{
"name": "dataset_img_root",
"label": "Dataset image root",
"helpText": "The root path to the dataset images. Must be a GCS path.",
"isOptional": false
},
{
"name": "model_checkpoint_path",
"label": "Model checkpoint path",
"helpText": "The path to the model checkpoint file. Must be a GCS path.",
"isOptional": false
},
{
"name": "device",
"label": "Device",
"helpText": "The device to run the model on.",
"isOptional": true
},
{
"name": "output_table_id",
"label": "Output table ID",
"helpText": "BigQuery output table ID.",
"isOptional": false
},
{
"name": "autoscaling_algorithm",
"label": "Autoscaling algorithm",
"helpText": "The autoscaling algorithm to use.",
"isOptional": true
},
{
"name": "dataflow_service_option",
"label": "Dataflow service option",
"helpText": "The Dataflow service option to use.",
"isOptional": true
},
{
"name": "disk_size_gb",
"label": "Disk size GB",
"helpText": "The disk size in GB to use.",
"isOptional": true
}
]
}