Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olekscode/MLNeuralNetwork
Multi-layer neural network implemented in Pharo
https://github.com/olekscode/MLNeuralNetwork
Last synced: about 1 month ago
JSON representation
Multi-layer neural network implemented in Pharo
- Host: GitHub
- URL: https://github.com/olekscode/MLNeuralNetwork
- Owner: olekscode
- License: mit
- Created: 2017-05-11T01:33:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-01T23:40:49.000Z (almost 7 years ago)
- Last Synced: 2024-10-31T06:41:56.221Z (about 2 months ago)
- Language: Smalltalk
- Size: 67.4 KB
- Stars: 7
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo-ml - MLNeuralNetworks - multilayer neural networks. Classification of MNIST handwritten digits (Neural Networks)
README
# MLNeuralNetwork project
Documentation for this project can be found here: [MLNeuralNetwork - Object-oriented Implementation of Artificial Neural Networks in Pharo](https://github.com/olekscode/MLNeuralNetwork-Doc).Use the following Metacello script to load MLNeuralNetwork into your [Pharo](https://pharo.org) image
```Smalltalk
Metacello new
repository: 'http://smalltalkhub.com/mc/Oleks/NeuralNetwork/main';
configuration: 'MLNeuralNetwork';
version: #development;
load.
```