mirror of
https://github.com/googleapis/googleapis.git
synced 2026-08-19 13:17:47 +02:00
feat: add example_gcs_source to Examples in aiplatform v1beta1 explanation.proto
PiperOrigin-RevId: 529739833
This commit is contained in:
parent
989aeef25b
commit
7bcbfa79bf
1 changed files with 24 additions and 0 deletions
|
|
@ -425,6 +425,30 @@ message BlurBaselineConfig {
|
|||
// Example-based explainability that returns the nearest neighbors from the
|
||||
// provided dataset.
|
||||
message Examples {
|
||||
// The Cloud Storage input instances.
|
||||
message ExampleGcsSource {
|
||||
// The format of the input example instances.
|
||||
enum DataFormat {
|
||||
// Format unspecified, used when unset.
|
||||
DATA_FORMAT_UNSPECIFIED = 0;
|
||||
|
||||
// Examples are stored in JSONL files.
|
||||
JSONL = 1;
|
||||
}
|
||||
|
||||
// The format in which instances are given, if not specified, assume it's
|
||||
// JSONL format. Currently only JSONL format is supported.
|
||||
DataFormat data_format = 1;
|
||||
|
||||
// The Cloud Storage location for the input instances.
|
||||
GcsSource gcs_source = 2;
|
||||
}
|
||||
|
||||
oneof source {
|
||||
// The Cloud Storage input instances.
|
||||
ExampleGcsSource example_gcs_source = 5;
|
||||
}
|
||||
|
||||
oneof config {
|
||||
// The full configuration for the generated index, the semantics are the
|
||||
// same as [metadata][google.cloud.aiplatform.v1beta1.Index.metadata] and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue