Skip to content

Instantly share code, notes, and snippets.

@nielsencfm
nielsencfm / .gitconfig
Created May 30, 2017 03:02
gitconfig alias's
[alias]
# Reference: https://github.com/durdn/cfg/blob/master/.gitconfig
# basic
st = status -sb
cl = clone
ci = commit
co = checkout
cob = checkout -b
aa = add -A
# Code inspired by (or copied from)
# https://github.com/fchollet/keras/blob/master/keras/applications/vgg16.py
# https://gist.github.com/baraldilorenzo/07d7802847aaad0a35d3
#
# VGG16 weights: https://github.com/fchollet/deep-learning-models/releases/download/v0.1/vgg16_weights_tf_dim_ordering_tf_kernels.h5
# VGG16 image classes: https://github.com/raghakot/keras-vis/blob/master/resources/imagenet_class_index.json
#
import json
import sys