Skip to content

Instantly share code, notes, and snippets.

View cubegame3d's full-sized avatar

Yongwook Jeong cubegame3d

  • Sejong University
View GitHub Profile
#!/bin/bash
# Install vim, curl, and wget using apt-get
# - vim: A text editor
# - curl: A tool to transfer data from or to a server
# - wget: A network downloader
# The '-y' flag automatically answers 'yes' to prompts
sudo apt-get install vim curl wget -y
# Add the Google Coral Edge TPU repository to the system's source list
@cubegame3d
cubegame3d / mnist.py
Created January 17, 2021 12:16 — forked from akesling/mnist.py
import os
import struct
import numpy as np
"""
Loosely inspired by http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py
which is GPL licensed.
"""
def read(dataset = "training", path = "."):