Input
ExecutionExecution trigger that begins KNN training
AI/ML/Classification
Fit a K-Nearest-Neighbours classifier. 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 vote on each prediction. Must be at least 1 and cannot exceed the number of training rows. Larger values smooth the decision boundary.
Weight each neighbour by the inverse of its distance instead of counting every neighbour equally. Helps when k is large or classes overlap.
Activated once the training set has been validated and embedded
Thread-safe handle to the trained KNN classifier. Contains a full copy of the training set.