neurex
Version:
A trainable neural network in NodeJS. Designed for ease of implementation and ANN modelling
29 lines (19 loc) • 1.18 kB
Markdown

# NeurexJS
Neurex is a JavaScript-based neural network library for Node.js, designed to be fully trainable and easy to integrate into your applications.
## How to get started
1. Ensure you have NodeJS installed on your machine. If you haven't installed it yet, download it here: https://nodejs.org/en/download
2. Create a new folder and navigate to your created folder in your terminal.
3. Once you're inside your project directory, install Neurex using this command:
```bash
npm install neurex
```
4. After successful installation, you can now train ANN models and do predictions in your backend applications.
## Documentation
Checkout the documentation how to get started [here](https://neurex-documentation.vercel.app/).
## Repository
Checkout for release notes [here](https://github.com/KarkAngelo114/Neurex).
> [Note]
> - can only do ANN modelling.
> - Falls back to pure Javascript operations if GPU is not available.
> - exported models (.nrx) are exclusive only in Neurex. Trained models cannot be loaded to other libraries or frameworks.