Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoneekstrom/machine-learning-library
A machine learning library.
https://github.com/antoneekstrom/machine-learning-library
Last synced: about 2 months ago
JSON representation
A machine learning library.
- Host: GitHub
- URL: https://github.com/antoneekstrom/machine-learning-library
- Owner: antoneekstrom
- Created: 2019-11-03T21:49:45.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T09:28:36.000Z (about 2 years ago)
- Last Synced: 2023-03-08T16:22:58.642Z (almost 2 years ago)
- Language: C#
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# machine-learning-library
A machine learning library.
It contains functionality for variable size matrices and vectors. It also has a somewhat functioning neural network in the form of a feedforward multilayer perceptron (I think it is called that, either way it sounds epic ngl)## Features
### XOR
Can successfully solve XOR "problem", which allows this magnificent creation to act as a stupidly overcomplicated and inefficient logic gate.### Handwritten digit recognition (doesn't work)
Trained using the MNIST dataset the network is unable to work properly because it is bad.Using large hidden layers will result in large numbers and therefore exclusively output ones. If using small layers it will overfit almost immediately and output near-zeroes for everything. It's a work in progress, ok (I need help).