text_extraction.proto 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/text_segment.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/automl/v1beta1;automl";
  18. option java_multiple_files = true;
  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. // Annotation for identifying spans of text.
  23. message TextExtractionAnnotation {
  24. // Required. Text extraction annotations can either be a text segment or a
  25. // text relation.
  26. oneof annotation {
  27. // An entity annotation will set this, which is the part of the original
  28. // text to which the annotation pertains.
  29. TextSegment text_segment = 3;
  30. }
  31. // Output only. A confidence estimate between 0.0 and 1.0. A higher value
  32. // means greater confidence in correctness of the annotation.
  33. float score = 1;
  34. }
  35. // Model evaluation metrics for text extraction problems.
  36. message TextExtractionEvaluationMetrics {
  37. // Metrics for a single confidence threshold.
  38. message ConfidenceMetricsEntry {
  39. // Output only. The confidence threshold value used to compute the metrics.
  40. // Only annotations with score of at least this threshold are considered to
  41. // be ones the model would return.
  42. float confidence_threshold = 1;
  43. // Output only. Recall under the given confidence threshold.
  44. float recall = 3;
  45. // Output only. Precision under the given confidence threshold.
  46. float precision = 4;
  47. // Output only. The harmonic mean of recall and precision.
  48. float f1_score = 5;
  49. }
  50. // Output only. The Area under precision recall curve metric.
  51. float au_prc = 1;
  52. // Output only. Metrics that have confidence thresholds.
  53. // Precision-recall curve can be derived from it.
  54. repeated ConfidenceMetricsEntry confidence_metrics_entries = 2;
  55. }