123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1beta1;
- import "google/api/field_behavior.proto";
- import "google/cloud/aiplatform/v1beta1/explanation_metadata.proto";
- import "google/cloud/aiplatform/v1beta1/io.proto";
- import "google/protobuf/struct.proto";
- option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1;aiplatform";
- option java_multiple_files = true;
- option java_outer_classname = "ExplanationProto";
- option java_package = "com.google.cloud.aiplatform.v1beta1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1";
- option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
- message Explanation {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated Attribution attributions = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- repeated Neighbor neighbors = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message ModelExplanation {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated Attribution mean_attributions = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message Attribution {
-
-
-
-
-
-
-
-
-
- double baseline_output_value = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
- double instance_output_value = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Value feature_attributions = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
- repeated int32 output_index = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
- string output_display_name = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- double approximation_error = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string output_name = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message Neighbor {
-
- string neighbor_id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- double neighbor_distance = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message ExplanationSpec {
-
- ExplanationParameters parameters = 1 [(google.api.field_behavior) = REQUIRED];
-
- ExplanationMetadata metadata = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message ExplanationParameters {
- oneof method {
-
-
-
-
- SampledShapleyAttribution sampled_shapley_attribution = 1;
-
-
-
- IntegratedGradientsAttribution integrated_gradients_attribution = 2;
-
-
-
-
-
-
-
-
-
- XraiAttribution xrai_attribution = 3;
-
-
- Examples examples = 7;
- }
-
-
-
-
- int32 top_k = 4;
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.ListValue output_indices = 5;
- }
- message SampledShapleyAttribution {
-
-
-
-
- int32 path_count = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message IntegratedGradientsAttribution {
-
-
-
-
-
- int32 step_count = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
- SmoothGradConfig smooth_grad_config = 2;
-
-
-
-
-
-
- BlurBaselineConfig blur_baseline_config = 3;
- }
- message XraiAttribution {
-
-
-
-
-
- int32 step_count = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
- SmoothGradConfig smooth_grad_config = 2;
-
-
-
-
-
-
- BlurBaselineConfig blur_baseline_config = 3;
- }
- message SmoothGradConfig {
-
-
-
- oneof GradientNoiseSigma {
-
-
-
-
-
-
-
-
-
-
-
-
-
- float noise_sigma = 1;
-
-
-
-
-
-
- FeatureNoiseSigma feature_noise_sigma = 2;
- }
-
-
-
-
- int32 noisy_sample_count = 3;
- }
- message FeatureNoiseSigma {
-
- message NoiseSigmaForFeature {
-
-
-
- string name = 1;
-
-
-
-
- float sigma = 2;
- }
-
- repeated NoiseSigmaForFeature noise_sigma = 1;
- }
- message BlurBaselineConfig {
-
-
-
-
- float max_blur_sigma = 1;
- }
- message Examples {
- oneof config {
-
-
- google.protobuf.Value nearest_neighbor_search_config = 2;
-
-
- Presets presets = 4;
- }
-
- GcsSource gcs_source = 1;
-
- int32 neighbor_count = 3;
- }
- message Presets {
-
- enum Query {
-
-
- PRECISE = 0;
-
- FAST = 1;
- }
-
- enum Modality {
-
- MODALITY_UNSPECIFIED = 0;
-
- IMAGE = 1;
-
- TEXT = 2;
-
- TABULAR = 3;
- }
-
- optional Query query = 1;
-
- Modality modality = 2;
- }
- message ExplanationSpecOverride {
-
-
-
- ExplanationParameters parameters = 1;
-
- ExplanationMetadataOverride metadata = 2;
-
- ExamplesOverride examples_override = 3;
- }
- message ExplanationMetadataOverride {
-
-
- message InputMetadataOverride {
-
-
-
-
-
-
- repeated google.protobuf.Value input_baselines = 1;
- }
-
-
-
-
-
- map<string, InputMetadataOverride> inputs = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message ExamplesOverride {
-
- enum DataFormat {
-
- DATA_FORMAT_UNSPECIFIED = 0;
-
- INSTANCES = 1;
-
- EMBEDDINGS = 2;
- }
-
- int32 neighbor_count = 1;
-
- int32 crowding_count = 2;
-
- repeated ExamplesRestrictionsNamespace restrictions = 3;
-
- bool return_embeddings = 4;
-
- DataFormat data_format = 5;
- }
- message ExamplesRestrictionsNamespace {
-
- string namespace_name = 1;
-
- repeated string allow = 2;
-
- repeated string deny = 3;
- }
|