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.



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

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)


63
64
65
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 63

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)


70
71
72
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 70

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)


76
77
78
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 76

def image
  @image
end

#image_rai_scoresGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionImageRaiScores

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



81
82
83
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 81

def image_rai_scores
  @image_rai_scores
end

#image_sizeGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionImageImageSize

Image size. Corresponds to the JSON property imageSize



86
87
88
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 86

def image_size
  @image_size
end

#rai_infoGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfo

Next ID: 6 Corresponds to the JSON property raiInfo



91
92
93
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 91

def rai_info
  @rai_info
end

#semantic_filter_responseGoogle::Apis::AiplatformV1::CloudAiLargeModelsVisionSemanticFilterResponse

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



96
97
98
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 96

def semantic_filter_response
  @semantic_filter_response
end

#textString

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

Returns:

  • (String)


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

def text
  @text
end

#uriString

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

Returns:

  • (String)


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

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



113
114
115
116
117
118
119
120
121
122
123
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 113

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