Input
ExecutionExecution trigger that begins KNN training
AI/ML/Regression
Fit a K-Nearest-Neighbours regressor that averages the target of the nearest training rows. Non-parametric and instance based: the fitted model embeds a verbatim copy of the whole training set instead of learned coefficients, so every training row (and any personal data in it) travels with the model, is written into every saved model file and can be reconstructed by anyone holding it. Treat the model with the same care as the source table.
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger that begins KNN training
Choose which backend supplies the training data
How many nearest training rows are averaged for each prediction. Must be at least 1 and cannot exceed the number of training rows. Larger values smooth the response.
Weight each neighbour by the inverse of its distance instead of taking a plain mean. Reduces the pull of distant neighbours when k is large.
Activated once the training set has been validated and embedded
Thread-safe handle to the trained KNN regressor. Contains a full copy of the training set.