Googly.DocumentAI.Model.GoogleCloudDocumentaiV1Evaluation (googly_document_ai v0.1.0)

Copy Markdown View Source

An evaluation of a ProcessorVersion's performance.

Attributes

  • all_entities_metrics (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationMultiConfidenceMetrics.t()) - Metrics for all the entities in aggregate.
  • create_time (type: DateTime.t()) - The time that the evaluation was created.
  • document_counters (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationCounters.t()) - Counters for the documents used in the evaluation.
  • entity_metrics (type: %{optional(String.t()) => Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationMultiConfidenceMetrics.t()}) - Metrics across confidence levels, for different entities.
  • kms_key_name (type: String.t()) - The KMS key name used for encryption.
  • kms_key_version_name (type: String.t()) - The KMS key version with which data is encrypted.
  • name (type: String.t()) - The resource name of the evaluation. Format: projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}/evaluations/{evaluation}
  • revisions (type: list(Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationEvaluationRevision.t())) - Contains all revisions of the evaluation, excluding the latest one.

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1Evaluation{
  all_entities_metrics:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationMultiConfidenceMetrics.t()
    | nil,
  create_time: DateTime.t() | nil,
  document_counters:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationCounters.t() | nil,
  entity_metrics:
    %{
      optional(String.t()) =>
        Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationMultiConfidenceMetrics.t()
    }
    | nil,
  kms_key_name: String.t() | nil,
  kms_key_version_name: String.t() | nil,
  name: String.t() | nil,
  revisions:
    [
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1EvaluationEvaluationRevision.t()
    ]
    | nil
}