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

https://github.com/randomgamingdev/dartml

A from scratch ML library that uses a custom architecture so that neurons can be easily inserted & uses a linear activation function I made for fun (NOT MEANT FOR PRODUCTION)
https://github.com/randomgamingdev/dartml

ai example from-scratch library machie-learning ml simple small

Last synced: 30 days ago
JSON representation

A from scratch ML library that uses a custom architecture so that neurons can be easily inserted & uses a linear activation function I made for fun (NOT MEANT FOR PRODUCTION)

Awesome Lists containing this project

README

          

# DartML
A from scratch ML library that uses a custom architecture so that neurons can be easily inserted & uses a linear activation function I made for fun. (NOT MEANT FOR PRODUCTION)

Basically, instead of implementing a neural algorithm with layers, my idea was to implement it using nodes that instead use a coordinate system, with an x, which allows for practically infinite layers, while making sure that the neurons don't go into loops. I also added an option to evaluate stuff from the neural network per tick, which would allow for continous input, output, and for there to theoretically have some sort of memory. As such it more closely imitates the brain, while being feedforward.

(This library isn't fully tested and might have bugs, for which you can contact me)

- Saving and loading should work, but hasn't been tested