Skip to content

Instantly share code, notes, and snippets.

View ermandir's full-sized avatar

ermandir ermandir

View GitHub Profile
@higuma
higuma / mnist.go
Last active August 25, 2021 00:48
MNIST database reader with Golang
// MNIST database reader
// http://yann.lecun.com/exdb/mnist/
package mnist
import (
"fmt"
"os"
"path/filepath"
)