classification.proto 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.automl.v1beta1;
  16. import "google/cloud/automl/v1beta1/temporal.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1beta1;automl";
  18. option java_outer_classname = "ClassificationProto";
  19. option java_package = "com.google.cloud.automl.v1beta1";
  20. option php_namespace = "Google\\Cloud\\AutoMl\\V1beta1";
  21. option ruby_package = "Google::Cloud::AutoML::V1beta1";
  22. // Type of the classification problem.
  23. enum ClassificationType {
  24. // An un-set value of this enum.
  25. CLASSIFICATION_TYPE_UNSPECIFIED = 0;
  26. // At most one label is allowed per example.
  27. MULTICLASS = 1;
  28. // Multiple labels are allowed for one example.
  29. MULTILABEL = 2;
  30. }
  31. // Contains annotation details specific to classification.
  32. message ClassificationAnnotation {
  33. // Output only. A confidence estimate between 0.0 and 1.0. A higher value
  34. // means greater confidence that the annotation is positive. If a user
  35. // approves an annotation as negative or positive, the score value remains
  36. // unchanged. If a user creates an annotation, the score is 0 for negative or
  37. // 1 for positive.
  38. float score = 1;
  39. }
  40. // Contains annotation details specific to video classification.
  41. message VideoClassificationAnnotation {
  42. // Output only. Expresses the type of video classification. Possible values:
  43. //
  44. // * `segment` - Classification done on a specified by user
  45. // time segment of a video. AnnotationSpec is answered to be present
  46. // in that time segment, if it is present in any part of it. The video
  47. // ML model evaluations are done only for this type of classification.
  48. //
  49. // * `shot`- Shot-level classification.
  50. // AutoML Video Intelligence determines the boundaries
  51. // for each camera shot in the entire segment of the video that user
  52. // specified in the request configuration. AutoML Video Intelligence
  53. // then returns labels and their confidence scores for each detected
  54. // shot, along with the start and end time of the shot.
  55. // WARNING: Model evaluation is not done for this classification type,
  56. // the quality of it depends on training data, but there are no
  57. // metrics provided to describe that quality.
  58. //
  59. // * `1s_interval` - AutoML Video Intelligence returns labels and their
  60. // confidence scores for each second of the entire segment of the video
  61. // that user specified in the request configuration.
  62. // WARNING: Model evaluation is not done for this classification type,
  63. // the quality of it depends on training data, but there are no
  64. // metrics provided to describe that quality.
  65. string type = 1;
  66. // Output only . The classification details of this annotation.
  67. ClassificationAnnotation classification_annotation = 2;
  68. // Output only . The time segment of the video to which the
  69. // annotation applies.
  70. TimeSegment time_segment = 3;
  71. }
  72. // Model evaluation metrics for classification problems.
  73. // Note: For Video Classification this metrics only describe quality of the
  74. // Video Classification predictions of "segment_classification" type.
  75. message ClassificationEvaluationMetrics {
  76. // Metrics for a single confidence threshold.
  77. message ConfidenceMetricsEntry {
  78. // Output only. Metrics are computed with an assumption that the model
  79. // never returns predictions with score lower than this value.
  80. float confidence_threshold = 1;
  81. // Output only. Metrics are computed with an assumption that the model
  82. // always returns at most this many predictions (ordered by their score,
  83. // descendingly), but they all still need to meet the confidence_threshold.
  84. int32 position_threshold = 14;
  85. // Output only. Recall (True Positive Rate) for the given confidence
  86. // threshold.
  87. float recall = 2;
  88. // Output only. Precision for the given confidence threshold.
  89. float precision = 3;
  90. // Output only. False Positive Rate for the given confidence threshold.
  91. float false_positive_rate = 8;
  92. // Output only. The harmonic mean of recall and precision.
  93. float f1_score = 4;
  94. // Output only. The Recall (True Positive Rate) when only considering the
  95. // label that has the highest prediction score and not below the confidence
  96. // threshold for each example.
  97. float recall_at1 = 5;
  98. // Output only. The precision when only considering the label that has the
  99. // highest prediction score and not below the confidence threshold for each
  100. // example.
  101. float precision_at1 = 6;
  102. // Output only. The False Positive Rate when only considering the label that
  103. // has the highest prediction score and not below the confidence threshold
  104. // for each example.
  105. float false_positive_rate_at1 = 9;
  106. // Output only. The harmonic mean of [recall_at1][google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfidenceMetricsEntry.recall_at1] and [precision_at1][google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfidenceMetricsEntry.precision_at1].
  107. float f1_score_at1 = 7;
  108. // Output only. The number of model created labels that match a ground truth
  109. // label.
  110. int64 true_positive_count = 10;
  111. // Output only. The number of model created labels that do not match a
  112. // ground truth label.
  113. int64 false_positive_count = 11;
  114. // Output only. The number of ground truth labels that are not matched
  115. // by a model created label.
  116. int64 false_negative_count = 12;
  117. // Output only. The number of labels that were not created by the model,
  118. // but if they would, they would not match a ground truth label.
  119. int64 true_negative_count = 13;
  120. }
  121. // Confusion matrix of the model running the classification.
  122. message ConfusionMatrix {
  123. // Output only. A row in the confusion matrix.
  124. message Row {
  125. // Output only. Value of the specific cell in the confusion matrix.
  126. // The number of values each row has (i.e. the length of the row) is equal
  127. // to the length of the `annotation_spec_id` field or, if that one is not
  128. // populated, length of the [display_name][google.cloud.automl.v1beta1.ClassificationEvaluationMetrics.ConfusionMatrix.display_name] field.
  129. repeated int32 example_count = 1;
  130. }
  131. // Output only. IDs of the annotation specs used in the confusion matrix.
  132. // For Tables CLASSIFICATION
  133. //
  134. // [prediction_type][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type]
  135. // only list of [annotation_spec_display_name-s][] is populated.
  136. repeated string annotation_spec_id = 1;
  137. // Output only. Display name of the annotation specs used in the confusion
  138. // matrix, as they were at the moment of the evaluation. For Tables
  139. // CLASSIFICATION
  140. //
  141. // [prediction_type-s][google.cloud.automl.v1beta1.TablesModelMetadata.prediction_type],
  142. // distinct values of the target column at the moment of the model
  143. // evaluation are populated here.
  144. repeated string display_name = 3;
  145. // Output only. Rows in the confusion matrix. The number of rows is equal to
  146. // the size of `annotation_spec_id`.
  147. // `row[i].example_count[j]` is the number of examples that have ground
  148. // truth of the `annotation_spec_id[i]` and are predicted as
  149. // `annotation_spec_id[j]` by the model being evaluated.
  150. repeated Row row = 2;
  151. }
  152. // Output only. The Area Under Precision-Recall Curve metric. Micro-averaged
  153. // for the overall evaluation.
  154. float au_prc = 1;
  155. // Output only. The Area Under Precision-Recall Curve metric based on priors.
  156. // Micro-averaged for the overall evaluation.
  157. // Deprecated.
  158. float base_au_prc = 2 [deprecated = true];
  159. // Output only. The Area Under Receiver Operating Characteristic curve metric.
  160. // Micro-averaged for the overall evaluation.
  161. float au_roc = 6;
  162. // Output only. The Log Loss metric.
  163. float log_loss = 7;
  164. // Output only. Metrics for each confidence_threshold in
  165. // 0.00,0.05,0.10,...,0.95,0.96,0.97,0.98,0.99 and
  166. // position_threshold = INT32_MAX_VALUE.
  167. // ROC and precision-recall curves, and other aggregated metrics are derived
  168. // from them. The confidence metrics entries may also be supplied for
  169. // additional values of position_threshold, but from these no aggregated
  170. // metrics are computed.
  171. repeated ConfidenceMetricsEntry confidence_metrics_entry = 3;
  172. // Output only. Confusion matrix of the evaluation.
  173. // Only set for MULTICLASS classification problems where number
  174. // of labels is no more than 10.
  175. // Only set for model level evaluation, not for evaluation per label.
  176. ConfusionMatrix confusion_matrix = 4;
  177. // Output only. The annotation spec ids used for this evaluation.
  178. repeated string annotation_spec_id = 5;
  179. }