Lazy Neural Network

Instructions

This project uses brain.js
Only works with Chrome and Opera.
  1. Open the js console in the developer tools menu.
  2. An AI has already been instantiated: var ai = new Classifier(0.70); // 70% threshold
  3. Add Classifier data to the ai with: ai.addTrainingData("data", "Item");
  4. Once you have added a suficient amount of data to the AI you now must train it. To do so, you must run the command: ai.learn();
  5. Now all you need to do is ai.ask("data");, and the AI you created will classify the data, and match it to one of the items that you have given it!