Module Values.BatchInferenceJobConfigSource

The configuration details of a batch inference job.

Sourcetype nonrec t = {
  1. itemExplorationConfig : HyperParameters.t option;
    (*

    A string to string map specifying the exploration configuration hyperparameters, including explorationWeight and explorationItemAgeCutOff, you want to use to configure the amount of item exploration Amazon Personalize uses when recommending items. See User-Personalization.

    *)
  2. rankingInfluence : RankingInfluence.t option;
    (*

    A map of ranking influence values for POPULARITY and FRESHNESS. For each key, specify a numerical value between 0.0 and 1.0 that determines how much influence that ranking factor has on the final recommendations. A value closer to 1.0 gives more weight to the factor, while a value closer to 0.0 reduces its influence.

    *)
}
Sourceval make : ?itemExplorationConfig:??? -> ?rankingInfluence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `Enum of string | `String of ParameterName.t ] * [> `Double of RankingInfluenceWeight.t | `String of ParameterValue.t ]) 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