Class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImage
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImage
- 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
-
#encoding ⇒ String
Image encoding, encoded as "image/png" or "image/jpg".
-
#generation_seed ⇒ Fixnum
Generation seed for the sampled image.
-
#image ⇒ String
Raw bytes.
-
#image_rai_scores ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImageRaiScores
RAI scores for generated image returned.
-
#image_size ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImageImageSize
Image size.
-
#rai_info ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfo
Next ID: 6 Corresponds to the JSON property
raiInfo
. -
#semantic_filter_response ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionSemanticFilterResponse
Semantic filter info for image.
-
#text ⇒ String
Text/Expanded text input for imagen.
-
#uri ⇒ String
Path to another storage (typically Google Cloud Storage).
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAiLargeModelsVisionImage
constructor
A new instance of CloudAiLargeModelsVisionImage.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#encoding ⇒ String
Image encoding, encoded as "image/png" or "image/jpg".
Corresponds to the JSON property encoding
63 64 65 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 63 def encoding @encoding end |
#generation_seed ⇒ Fixnum
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
70 71 72 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 70 def generation_seed @generation_seed end |
#image ⇒ String
Raw bytes.
Corresponds to the JSON property image
NOTE: Values are automatically base64 encoded/decoded in the client library.
76 77 78 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 76 def image @image end |
#image_rai_scores ⇒ Google::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_size ⇒ Google::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_info ⇒ Google::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_response ⇒ Google::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 |
#text ⇒ String
Text/Expanded text input for imagen.
Corresponds to the JSON property text
101 102 103 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 101 def text @text end |
#uri ⇒ String
Path to another storage (typically Google Cloud Storage).
Corresponds to the JSON property uri
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 |