Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SilasMarvin/dnns-from-scratch-in-zig
https://github.com/SilasMarvin/dnns-from-scratch-in-zig
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/SilasMarvin/dnns-from-scratch-in-zig
- Owner: SilasMarvin
- License: gpl-3.0
- Created: 2023-04-19T18:10:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-12T15:36:35.000Z (7 months ago)
- Last Synced: 2024-04-26T01:35:16.493Z (6 months ago)
- Language: Zig
- Size: 33.2 KB
- Stars: 55
- Watchers: 3
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This repo is a very simple implementation of deep neural networks written in the Zig programming language.
It does not utilize tensors or any automatic differentiation library as it is only composed of fully connected feed forward layers.
To solve MNIST, create a new directory "data" in the root of the project, download the MNIST files from [http://yann.lecun.com/exdb/mnist/](http://yann.lecun.com/exdb/mnist/), and unzip and store the files in the "data" directory. Then run:
```
zig build run
```If the above url is not working for you, checkout: [https://github.com/cvdfoundation/mnist](https://github.com/cvdfoundation/mnist).