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.
-
#rai_info ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfo
RAI info for image.
-
#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.
103 104 105 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 103 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 |
#rai_info ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfo
RAI info for image.
Corresponds to the JSON property raiInfo
86 87 88 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 86 def rai_info @rai_info end |
#semantic_filter_response ⇒ Google::Apis::AiplatformV1::CloudAiLargeModelsVisionSemanticFilterResponse
Semantic filter info for image.
Corresponds to the JSON property semanticFilterResponse
91 92 93 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 91 def semantic_filter_response @semantic_filter_response end |
#text ⇒ String
Text/Expanded text input for imagen.
Corresponds to the JSON property text
96 97 98 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 96 def text @text end |
#uri ⇒ String
Path to another storage (typically Google Cloud Storage).
Corresponds to the JSON property uri
101 102 103 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 101 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
108 109 110 111 112 113 114 115 116 117 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 108 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) @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 |