Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel6
outlinefalse
typeflat
printablefalse

Given a table with multiple scores, assume that a final score was created by combining those scores. Using that final score, create a model that can estimate final scores for other tables (train model).

Example uses for this operator
Assume you have 1 million events with multiple scores and you want to assign final scores for all of them without manually annotating each event. This operator allows you to annotate a subsample of the data (say 100 events) and use that knowledge to score the remaining 99.9%.

  •  This operator creates the model for combining scores. Use the combineScores operator to combine scores using the model that you create with this operator.

Trained models are not displayed in the UI, so remember the name of the model that was created.

...

Example

Input
table = github_logs

id

downloadScore

loginScore

finalScore

1

10.0

5.0

9.0

1

1.0

2.0

1.0

LQL command

Code Block
createScoreCombiner(table, "downloadAndLoginScorer", "finalScore", "downloadScore", "loginScore")

...