Class Visualization (1.5.0)

Visualization(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Visualization configurations for image explanation. .. attribute:: type_

Type of the image visualization. Only applicable to [Integrated Gradients attribution][google.cloud.aiplatform.v1.ExplanationParameters.integrated_gradients_attribution]. OUTLINES shows regions of attribution, while PIXELS shows per-pixel attribution. Defaults to OUTLINES.

:type: google.cloud.aiplatform_v1.types.ExplanationMetadata.InputMetadata.Visualization.Type

Attributes

NameDescription
polarity google.cloud.aiplatform_v1.types.ExplanationMetadata.InputMetadata.Visualization.Polarity
Whether to only highlight pixels with positive contributions, negative or both. Defaults to POSITIVE.
color_map google.cloud.aiplatform_v1.types.ExplanationMetadata.InputMetadata.Visualization.ColorMap
The color scheme used for the highlighted areas. Defaults to PINK_GREEN for [Integrated Gradients attribution][google.cloud.aiplatform.v1.ExplanationParameters.integrated_gradients_attribution], which shows positive attributions in green and negative in pink. Defaults to VIRIDIS for [XRAI attribution][google.cloud.aiplatform.v1.ExplanationParameters.xrai_attribution], which highlights the most influential regions in yellow and the least influential in blue.
clip_percent_upperbound float
Excludes attributions above the specified percentile from the highlighted areas. Using the clip_percent_upperbound and clip_percent_lowerbound together can be useful for filtering out noise and making it easier to see areas of strong attribution. Defaults to 99.9.
clip_percent_lowerbound float
Excludes attributions below the specified percentile, from the highlighted areas. Defaults to 62.
overlay_type google.cloud.aiplatform_v1.types.ExplanationMetadata.InputMetadata.Visualization.OverlayType
How the original image is displayed in the visualization. Adjusting the overlay can help increase visual clarity if the original image makes it difficult to view the visualization. Defaults to NONE.

Inheritance

builtins.object > proto.message.Message > Visualization

Classes

ColorMap

ColorMap(value)

The color scheme used for highlighting areas.

OverlayType

OverlayType(value)

How the original image is displayed in the visualization.

Polarity

Polarity(value)

Whether to only highlight pixels with positive contributions, negative or both. Defaults to POSITIVE.

Type

Type(value)

Type of the image visualization. Only applicable to [Integrated Gradients attribution][google.cloud.aiplatform.v1.ExplanationParameters.integrated_gradients_attribution].