123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- syntax = "proto3";
- package google.cloud.aiplatform.v1beta1;
- import "google/api/field_behavior.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 = "ExplanationMetadataProto";
- option java_package = "com.google.cloud.aiplatform.v1beta1";
- option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1";
- option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
- message ExplanationMetadata {
-
-
-
-
- message InputMetadata {
-
-
-
-
-
-
-
-
- message FeatureValueDomain {
-
- float min_value = 1;
-
- float max_value = 2;
-
-
-
- float original_mean = 3;
-
-
-
- float original_stddev = 4;
- }
-
- message Visualization {
-
-
- enum Type {
-
- TYPE_UNSPECIFIED = 0;
-
- PIXELS = 1;
-
-
- OUTLINES = 2;
- }
-
-
- enum Polarity {
-
- POLARITY_UNSPECIFIED = 0;
-
-
- POSITIVE = 1;
-
-
- NEGATIVE = 2;
-
- BOTH = 3;
- }
-
- enum ColorMap {
-
- COLOR_MAP_UNSPECIFIED = 0;
-
- PINK_GREEN = 1;
-
-
-
- VIRIDIS = 2;
-
- RED = 3;
-
- GREEN = 4;
-
- RED_GREEN = 6;
-
- PINK_WHITE_GREEN = 5;
- }
-
- enum OverlayType {
-
- OVERLAY_TYPE_UNSPECIFIED = 0;
-
- NONE = 1;
-
- ORIGINAL = 2;
-
-
- GRAYSCALE = 3;
-
-
- MASK_BLACK = 4;
- }
-
-
-
-
- Type type = 1;
-
-
- Polarity polarity = 2;
-
-
-
-
-
-
-
-
-
-
- ColorMap color_map = 3;
-
-
-
-
-
- float clip_percent_upperbound = 4;
-
-
- float clip_percent_lowerbound = 5;
-
-
-
- OverlayType overlay_type = 6;
- }
-
- enum Encoding {
-
- ENCODING_UNSPECIFIED = 0;
-
- IDENTITY = 1;
-
-
-
-
-
-
-
- BAG_OF_FEATURES = 2;
-
-
-
-
-
-
-
-
- BAG_OF_FEATURES_SPARSE = 3;
-
-
-
-
-
-
-
- INDICATOR = 4;
-
-
-
-
-
-
-
- COMBINED_EMBEDDING = 5;
-
-
-
-
-
-
-
-
-
-
-
-
-
- CONCAT_EMBEDDING = 6;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated google.protobuf.Value input_baselines = 1;
-
-
- string input_tensor_name = 2;
-
-
- Encoding encoding = 3;
-
-
- string modality = 4;
-
-
- FeatureValueDomain feature_value_domain = 5;
-
-
-
-
- string indices_tensor_name = 6;
-
-
-
- string dense_shape_tensor_name = 7;
-
-
-
- repeated string index_feature_mapping = 8;
-
-
-
-
-
-
-
-
- string encoded_tensor_name = 9;
-
-
-
-
-
- repeated google.protobuf.Value encoded_baselines = 10;
-
- Visualization visualization = 11;
-
-
-
-
-
- string group_name = 12;
- }
-
- message OutputMetadata {
-
-
-
-
-
- oneof display_name_mapping {
-
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.Value index_display_name_mapping = 1;
-
-
-
-
-
-
-
- string display_name_mapping_key = 2;
- }
-
-
- string output_tensor_name = 3;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- map<string, InputMetadata> inputs = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
- map<string, OutputMetadata> outputs = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
- string feature_attributions_schema_uri = 3;
-
- string latent_space_source = 5;
- }
|