Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult
- 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
Prediction output format for Video Classification.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The Model's confidence in correction of this prediction, higher value means higher confidence.
-
#display_name ⇒ String
The display name of the AnnotationSpec that had been identified.
-
#id ⇒ String
The resource ID of the AnnotationSpec that had been identified.
-
#time_segment_end ⇒ String
The end, exclusive, of the video's time segment in which the AnnotationSpec has been identified.
-
#time_segment_start ⇒ String
The beginning, inclusive, of the video's time segment in which the AnnotationSpec has been identified.
-
#type ⇒ String
The type of the prediction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult
constructor
A new instance of GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult
Returns a new instance of GoogleCloudAiplatformV1SchemaPredictPredictionVideoClassificationPredictionResult.
25233 25234 25235 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25233 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
The Model's confidence in correction of this prediction, higher value means
higher confidence.
Corresponds to the JSON property confidence
25193 25194 25195 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25193 def confidence @confidence end |
#display_name ⇒ String
The display name of the AnnotationSpec that had been identified.
Corresponds to the JSON property displayName
25198 25199 25200 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25198 def display_name @display_name end |
#id ⇒ String
The resource ID of the AnnotationSpec that had been identified.
Corresponds to the JSON property id
25203 25204 25205 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25203 def id @id end |
#time_segment_end ⇒ String
The end, exclusive, of the video's time segment in which the AnnotationSpec
has been identified. Expressed as a number of seconds as measured from the
start of the video, with fractions up to a microsecond precision, and with "s"
appended at the end. Note that for 'segment-classification' prediction type,
this equals the original 'timeSegmentEnd' from the input instance, for other
types it is the end of a shot or a 1 second interval respectively.
Corresponds to the JSON property timeSegmentEnd
25213 25214 25215 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25213 def time_segment_end @time_segment_end end |
#time_segment_start ⇒ String
The beginning, inclusive, of the video's time segment in which the
AnnotationSpec has been identified. Expressed as a number of seconds as
measured from the start of the video, with fractions up to a microsecond
precision, and with "s" appended at the end. Note that for 'segment-
classification' prediction type, this equals the original 'timeSegmentStart'
from the input instance, for other types it is the start of a shot or a 1
second interval respectively.
Corresponds to the JSON property timeSegmentStart
25224 25225 25226 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25224 def time_segment_start @time_segment_start end |
#type ⇒ String
The type of the prediction. The requested types can be configured via parameters. This will be one of - segment-classification - shot-classification
- one-sec-interval-classification
Corresponds to the JSON property
type
25231 25232 25233 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25231 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25238 25239 25240 25241 25242 25243 25244 25245 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25238 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @display_name = args[:display_name] if args.key?(:display_name) @id = args[:id] if args.key?(:id) @time_segment_end = args[:time_segment_end] if args.key?(:time_segment_end) @time_segment_start = args[:time_segment_start] if args.key?(:time_segment_start) @type = args[:type] if args.key?(:type) end |