bigqueryImportKeys property
Prediction keys that tell Data Labeling Service where to find the data for evaluation in your BigQuery table.
When the service samples prediction input and output from your model
version and saves it to BigQuery, the data gets stored as JSON strings in
the BigQuery table. These keys tell Data Labeling Service how to parse the
JSON. You can provide the following entries in this field: *
data_json_key
: the data key for prediction input. You must provide
either this key or reference_json_key
. * reference_json_key
: the data
reference key for prediction input. You must provide either this key or
data_json_key
. * label_json_key
: the label key for prediction output.
Required. * label_score_json_key
: the score key for prediction output.
Required. * bounding_box_json_key
: the bounding box key for prediction
output. Required if your model version perform image object detection.
Learn [how to configure prediction
keys](/ml-engine/docs/continuous-evaluation/create-job#prediction-keys).
Required.
Implementation
core.Map<core.String, core.String>? bigqueryImportKeys;