Skip to content

Instantly share code, notes, and snippets.

View asiedubrempong's full-sized avatar
👨‍💻
deep in code...

Kofi Asiedu Brempong asiedubrempong

👨‍💻
deep in code...
View GitHub Profile
@asiedubrempong
asiedubrempong / git_newrepo
Created April 12, 2018 22:36 — forked from c0ldlimit/git_newrepo
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line
@asiedubrempong
asiedubrempong / masks.ipynb
Created March 28, 2020 14:39
An image classifier to identify COVID-19 masks
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@asiedubrempong
asiedubrempong / mnist_full_chapter_4.ipynb
Created April 11, 2020 21:23
Reproduction of chapter 4 of the fastai book using the full MNIST dataset
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.