@0x77/brain

A brain.js cli

Usage no npm install needed!

<script type="module">
  import 0x77Brain from 'https://cdn.skypack.dev/@0x77/brain';
</script>

README

Brain.js CLI

@0x77/brain is an Node.js module with brain.js and repl, its like repl with brain.js and some additionally features like loadFromJSON/readFromJSON file.

How to install

To install:

  • Yarn
$ yarn global add @0x77/brain 
  • NPM
$ npm i -g @0x77/brain

Commands

  • REPL:
    • .break Sometimes you get stuck, this gets you out
    • .clear Break, and also clear the local context
    • .editor Enter editor mode
    • .exit Exit the repl
    • .help Print help message
    • .load Load JS from a file into the REPL session
    • .save Save all evaluated commands in this REPL session to a file
  • BRAIN:
    • net.loadFromJSON(path) - loads net from json file (<path to file>)
    • saveToJSON(path) - saves net to json file (<path to file>)
    • train(config) - starts training nn (<brain.js train config>)
    • run(data) - run's the nn (<data>)
    • loadTrainingData(path) - loads training data from json file (<path to file>)