Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
nichoffs committed Aug 15, 2024
1 parent 84a86ef commit 80eb249
Show file tree
Hide file tree
Showing 3 changed files with 408 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/post/mnist4all/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: Mnist4All
type: series
---

Mnist4All is a series where I implement an [MNIST](https://en.wikipedia.org/wiki/MNIST_database) classifier neural net in various languages,
libraries, and with different levels of abstraction.

1. Python - built on `numpy` - closely follows my mental model for deep learning -
outlines the base structure which other implementations will reproduce.

2. C - only using standard library - implements tensor from scratch - zero-copy reshape - it's *a lot* slower than `numpy`
7 changes: 7 additions & 0 deletions content/post/mnist4all/c.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
+++
title = 'C'
date = 2024-08-02T09:41:09-07:00
draft = true
+++


Loading

0 comments on commit 80eb249

Please sign in to comment.