An open API service indexing awesome lists of open source software.

https://github.com/vtech6/goml

Neural Networks from scratch in Go (standard library only)
https://github.com/vtech6/goml

binary-classification deep-learning from-scratch golang machine-learning multilayer-perceptron neural-network vanilla

Last synced: 5 months ago
JSON representation

Neural Networks from scratch in Go (standard library only)

Awesome Lists containing this project

README

          

# goml
Neural Networks from scratch in Go (standard library only)

Limitations:
- No external libraries or modules
- For simplicity, I limit the input shape to (1,x)

Goal:
- Multilayer Perceptron (done)
- Binary classification (done)
- Support for multiple outputs (Multiple classification) (halted)
- Visualization (in progress)