Class: Google::Cloud::AIPlatform::V1::Part::MediaResolution

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/aiplatform/v1/content.rb

Overview

per part media resolution. Media resolution for the input media.

Defined Under Namespace

Modules: Level

Instance Attribute Summary collapse

Instance Attribute Details

#level::Google::Cloud::AIPlatform::V1::Part::MediaResolution::Level

Returns The tokenization quality used for given media.

Returns:



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'proto_docs/google/cloud/aiplatform/v1/content.rb', line 115

class MediaResolution
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The media resolution level.
  module Level
    # Media resolution has not been set.
    MEDIA_RESOLUTION_UNSPECIFIED = 0

    # Media resolution set to low.
    MEDIA_RESOLUTION_LOW = 1

    # Media resolution set to medium.
    MEDIA_RESOLUTION_MEDIUM = 2

    # Media resolution set to high.
    MEDIA_RESOLUTION_HIGH = 3

    # Media resolution set to ultra high. This is for image only.
    MEDIA_RESOLUTION_ULTRA_HIGH = 4
  end
end