aggregate_min
Input
def score_function_recommendation( params, doc):
score1 = 0.0
if match('genres'):
aggregate_min ("min_budget_genres", "rating")
if match('languages'):
aggregate_min ("min_budget", "rating")
score1 += rarity_sum('genres')
return score1 Last updated