Module Values.AudienceQualityMetricsSource

Metrics that describe the quality of the generated audience.

Sourcetype nonrec t = {
  1. relevanceMetrics : RelevanceMetrics.t option;
    (*

    The relevance scores of the generated audience.

    *)
  2. recallMetric : AudienceQualityMetricsRecallMetricDouble.t option;
    (*

    The recall score of the generated audience. Recall is the percentage of the most similar users (by default, the most similar 20%) from a sample of the training data that are included in the seed audience by the audience generation job. Values range from 0-1, larger values indicate a better audience. A recall value approximately equal to the maximum bin size indicates that the audience model is equivalent to random selection.

    *)
}
Sourceval make : ?relevanceMetrics:??? -> ?recallMetric:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of AudienceQualityMetricsRecallMetricDouble.t | `List of [> `Structure of (string * [> `Double of RelevanceMetricScoreDouble.t | `Structure of (string * [> `Enum of string | `Integer of AudienceSizeValue.t ]) list ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t