Class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Image.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudAiLargeModelsVisionImage

Returns a new instance of CloudAiLargeModelsVisionImage.



145
146
147
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 145

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#encodingString

Image encoding, encoded as "image/png" or "image/jpg". Corresponds to the JSON property encoding

Returns:

  • (String)


100
101
102
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 100

def encoding
  @encoding
end

#generation_seedFixnum

Generation seed for the sampled image. This parameter is exposed to the user only if one of the following is true: 1. The user specified per-example seeds in the request. 2. The user doesn't specify the generation seed in the request. Corresponds to the JSON property generationSeed

Returns:

  • (Fixnum)


107
108
109
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 107

def generation_seed
  @generation_seed
end

#imageString

Raw bytes. Corresponds to the JSON property image NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


113
114
115
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 113

def image
  @image
end

#image_rai_scoresGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionImageRaiScores

RAI scores for generated image returned. Corresponds to the JSON property imageRaiScores



118
119
120
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 118

def image_rai_scores
  @image_rai_scores
end

#image_sizeGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionImageImageSize

Image size. Corresponds to the JSON property imageSize



123
124
125
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 123

def image_size
  @image_size
end

#rai_infoGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfo

Next ID: 6 Corresponds to the JSON property raiInfo



128
129
130
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 128

def rai_info
  @rai_info
end

#semantic_filter_responseGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionSemanticFilterResponse

Semantic filter info for image. Corresponds to the JSON property semanticFilterResponse



133
134
135
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 133

def semantic_filter_response
  @semantic_filter_response
end

#textString

Text/Expanded text input for imagen. Corresponds to the JSON property text

Returns:

  • (String)


138
139
140
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 138

def text
  @text
end

#uriString

Path to another storage (typically Google Cloud Storage). Corresponds to the JSON property uri

Returns:

  • (String)


143
144
145
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 143

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



150
151
152
153
154
155
156
157
158
159
160
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 150

def update!(**args)
  @encoding = args[:encoding] if args.key?(:encoding)
  @generation_seed = args[:generation_seed] if args.key?(:generation_seed)
  @image = args[:image] if args.key?(:image)
  @image_rai_scores = args[:image_rai_scores] if args.key?(:image_rai_scores)
  @image_size = args[:image_size] if args.key?(:image_size)
  @rai_info = args[:rai_info] if args.key?(:rai_info)
  @semantic_filter_response = args[:semantic_filter_response] if args.key?(:semantic_filter_response)
  @text = args[:text] if args.key?(:text)
  @uri = args[:uri] if args.key?(:uri)
end