...
Trained models are not displayed in the UI, so remember the name of the model that was created.
Operator Usage in Easy Mode
- Click + on the parent node.
- Enter the Create Score Combiner operator in the search field and select the operator from the Results to open the operator form.
- In the Table drop-down, enter or select the table to create a model.
- In the Model Name field, enter the name of the model to store it in a particular location.
- In the Final Score field, enter the column name that contains the final score.
- Click Run to view the result.
- Click Save to add the operator to the playbook.
- Click Cancel to discard the operator form.
Usage Details
LQL Command
Code Block |
---|
createScoreCombiner(table, modelFilename, finalScore, listOfScoreFields) |
...
Output
The same table is returned if the model is successfully created.
Example
Input
table = github_logs
id | downloadScore | loginScore | finalScore |
---|---|---|---|
1 | 10.0 | 5.0 | 9.0 |
1 | 1.0 | 2.0 | 1.0 |
...