Skip to content

Instantly share code, notes, and snippets.

View Robert-G-J's full-sized avatar

Robert Jones Robert-G-J

  • Bristol, UK
View GitHub Profile

Keybase proof

I hereby claim:

  • I am robert-g-j on github.
  • I am robgj (https://keybase.io/robgj) on keybase.
  • I have a public key ASDbFXTgshpGeDrPVvpXVcOmxv_U-yqW60JmIP-yY2xKKQo

To claim this, I am signing this object:

@Robert-G-J
Robert-G-J / knnClassifier.js
Last active April 15, 2019 13:45
KNN Classifier
const harness = require("../harness/harness.js");
class Classifier {
constructor(knn) {
this.trainingData = [];
this.trainingLabels = [];
this.knn = knn;
}
fit(trainingData, trainingLabels) {