Currently the number of neighbours used to decide the outcome of a KNN model is located in StaticConfiguration, and is set to 10 atm. But if there are only 10 samples, then the outcome will always be 50/50, since the K nearest samples are the entire dataset.
Should we compute an appropriate value of K at runtime? Or is this something we want to make appearent / configurable when training the model
We go with 3 for now, which is the minimum number of gestures. Therefore the issue will be closed, but probably should be opened up for configuration in later versions
Currently the number of neighbours used to decide the outcome of a KNN model is located in StaticConfiguration, and is set to 10 atm. But if there are only 10 samples, then the outcome will always be 50/50, since the K nearest samples are the entire dataset.
Should we compute an appropriate value of K at runtime? Or is this something we want to make appearent / configurable when training the model